/* 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');

@import url('https://fonts.googleapis.com/css?family=Montserrat');

@font-face {
	font-family: 'Roboto', sans-serif;
	src:url('../fonts/SaintMarcheRough.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');
}


.vertically-centered{
	display: flex;
	flex-direction: column;
	justify-content: center; 
}


/***************************************

-webkit-transition: all .30s ease;
-moz-transition: all .30s ease;
-o-transition: all .30s ease;
transition: all .30s ease;

****************************************/

.home-page-section-1 {
	padding: 75px 0 75px 0;
	background: url(/img/backgrounds/bandw.jpg);
	background-size: cover;
}
.home-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-1 h4 {
	font-size: 1.75rem;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-1 p.title-description {
	padding: 0px 300px 0 300px;
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.card {
	max-height: 100%;
	height: 100%;
	color: #fff;
	margin: 0 0 20px;
	padding: 18px 10px;
	background: rgba(255,255,255,0.8);
	border: 2px solid rgb(40,37,108);
	box-shadow: 0px 0px 32px -10px #06060685;
	visibility: hidden;
}
.card:hover {
	cursor:pointer;
}
.card h3 {
	font-size: 2rem;
	font-weight: 700;
	color: rgb(12,12,12);
}
.card p {
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.card span {
	font-size:18px;
	font-weight:500;
}
.card .btn {
	font-size: 1.1em;
	text-transform: uppercase;
	background: transparent;
	font-weight: 600;
	position: absolute;
	bottom: 25px;
	border: none;
	padding: 0;
	margin: 0;
	color: rgb(40,37,108);
	display: flex;
	flex-direction: row;
	align-items: center;
}
.card .btn span {
	position:relative;
	left:4px;
	-webkit-transition: all .20s ease;
	-moz-transition: all .20s ease;
	-o-transition: all .20s ease;
	transition: all .20s ease;
}
.card:hover span {
	left:12px;
}
.home-page-section-2 {
	padding: 50px 0 50px 0;
	background: rgb(105,105,105);
}
.home-page-section-2 h2 {
	font-size: 2rem;
	font-weight: 600;
	text-shadow: 1px 1px 1px rgb(12,12,12);
	color: rgb(255,255,255);
}
.home-page-section-2 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.home-page-section-2 a.learn-more {
	padding: 10px;
	background: rgb(40,37,108);
	border: 3px double rgb(105,105,105);
	border-radius: 0.8rem;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	color: rgb(255,255,255);
}
.home-page-section-2 a.learn-more:hover {
	background: rgb(105,105,105);
	border: 3px solid rgb(255,255,255);
	color: rgb(255,255,255);
}


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

.home-faqs img {
	margin-top: 100px;
}

/* Shotcrete FAQ styles (scoped to shotcrete-faq classes only) */
.shotcrete-faq {
  max-width: 1100px;
  margin: 2rem auto;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1d232f;
}

.shotcrete-faq > h2 {
  margin: 0 0 1rem 0;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  line-height: 1.2;
}

.shotcrete-faq__item {
  border: 1px solid #e3e6eb;
  border-radius: 12px;
  background: #ffffff;
  margin-block: 0.75rem;
  overflow: hidden;
}

.shotcrete-faq__summary {
  cursor: pointer;
  display: block;
  padding: 1rem 3rem 1rem 1rem;
  background: #f7f9fc;
  color: #161b22;
  font-weight: 600;
  line-height: 1.35;
  position: relative;
  user-select: none;
  outline: none;
}

/* hide default marker and add chevron */
.shotcrete-faq__summary::-webkit-details-marker { display: none; }
.shotcrete-faq__summary::marker { content: ""; }
.shotcrete-faq__summary::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 1.25rem;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease, top .2s ease;
}
.shotcrete-faq__item[open] > .shotcrete-faq__summary::after {
  transform: rotate(225deg);
  top: 1.4rem;
}

.shotcrete-faq__panel {
  padding: 0.85rem 1rem 1rem 1rem;
}

.shotcrete-faq__panel p { margin: 0 0 0.5rem 0; }

.shotcrete-faq__list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.35rem;
}

/* Links */
.shotcrete-faq a {
  color: #28256c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.shotcrete-faq a:hover { text-decoration-thickness: 2px; }

/* Focus styles for accessibility */
.shotcrete-faq__summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
  border-radius: 10px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shotcrete-faq__summary::after { transition: none; }
}


.contact-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(255,255,255,);
}
.contact-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	color: rgb(12,12,12);
}
.contact-section-1 h2.contact {
	font-size: 2.6rem;
	font-weight: 600;
	text-align: center;
	color: rgb(12,12,12);
}
.contact-section-1 h2 {
	font-size: 2rem;
	font-weight: 600;
	color: rgb(40,37,108);
}
.contact-section-1 h4 {
	font-size: 1.5rem;
	font-weight: 500;
	color: rgb(12,12,12)
}
.contact-section-1 a {
	color: rgb(12,12,12);
}
.contact-section-1 span {
	color: rgb(40,37,108);
}

.animation-shocks-wrapper {
	position:relative;
	display:flex;
	flex-direction:row;
	justify-content:space-around;
	overflow:hidden;
}
.animation-shocks-wrapper #hose-1,
.animation-shocks-wrapper #hose-2 {
	position:relative;
	/* opacity:0; */
	width: 100%;
	height: 100%;
}
.animation-shocks-wrapper #hose-1 {
	right: 100%;
}
.animation-shocks-wrapper #hose-2 {
	left:100%;
}


.david-padding {
	background-image: url(/img/backgrounds/bandw.jpg);
	background-size: cover;
	background-position: top;
}
.david-padding .container {
	padding: 125px 0 0 0;
}
.david-padding li {
	color: grey;
	margin-bottom: 12px;
    font-weight: normal;
    font-size: 22px;
}
.pad1 {
	padding: 250px 0 175px 0;
}
.blahk {
	background: #fff;
	padding: 30px 30px 0 30px;
	margin: 0 30px 0 30px;
}
body {
    font-family: 'Montserrat', sans-serif;
}

.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: 1rem;
	  color: #e6e6e6 !important;
	  text-align: left;
	  list-style: none;
	  background-color: #101010;
	  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:#545454;
	font-weight:600 !important;
	font-size: 0.9rem;
	font-family:'Raleway';
	text-align:center;
}

.view-gallery-btn {
	position:relative;
	display: inline-block;
	background: #b34141;
	padding: 5px 30px;
	color: #fff;
	font-weight: 600;
}

#login-page .btn-primary.disabled, .btn-primary:disabled {
	background-color:#1f1f1f;
}

#login-page .about-header-section {
    text-align: center;
    padding: 0;
    background: linear-gradient(to bottom, rgba(19, 19, 19, 0.81), rgba(4, 4, 4, 0.81)), url(../img/backgrounds/service-page-two-header-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}
#login-page .about-header-section {
	height:100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
#login-page .about-header-section form {
	background:#fff;
	padding: 30px;
	margin:auto;
	text-align: left;
	box-shadow: 0px 0px 20px 1px #000;
}

#login-page #form-login {
	padding:30px 0 50px;
}
#login-page #form-login .btn {
	width:100%;
	margin: 0 0 15px;
	box-shadow: none;
}
#login-page #form-login .btn-secondary {
	padding:0;
	text-align:inherit;
	color: inherit;
	background-color: transparent;
	width:inherit;
	border:none;
}
#login-page #form-login .btn-secondary:hover {
	background-color:transparent !important;
	color:#585858;
}
#login-page .btn-primary {
	border:none;
	color:#fff;
	background-color:#252525;
}

#login-page input {
	padding:6px 10px;
	margin: 0 0 15px;
	width: 100%;
}
body#login-page {
	visibility:visible;
}
#login-page .login-form-container {
	position: relative;
	overflow: hidden;
	padding: 0;
	/* height: inherit; */
}
#login-page #form-login {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logout-btn {
	position:relative;
	display:inline-block;
	color:#fff;
	font-weight: 700;
	padding:6px 30px;
	background: #b34141;
}
#image-uploads .upload-container {
	padding: 50px 0 !important;
}
#image-uploads .form-control {
	margin-left:10px;
}


/*******************  Page Loader *************************/

/* This only works with JavaScript, 
if it's not present, don't show loader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; z-index:99999; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: url(/images/loader-64x/Preloader_2.gif) center no-repeat #fff;
}



/*******************  Referrals Owl Carousel *************************/
.owl-carousel {
}
.owl-carousel .owl-stage-outer {
	padding:40px 0;
}
.owl-nav {
	position:absolute;
	width: 100%;
	top:10%;
}
.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;
}


/*******************  Home Page Service Cards *************************/
#referrals .referrals-section {
    background: #ffffff;
    color: #888888;
    padding: 6%;
}

#referrals .card .btn {
	position:inherit;
	width: 100%;
	text-align: left;
	margin: 0;
	display: block;
	padding: 16px 20px;
}
#referrals .card {
    position: relative;
    max-height: 100%;
    height: 100%;
    margin:inherit;
    padding: inherit;
    background: transparent;
}
#referrals .card-header {
	padding: 0;
}

.home-service-section {
	overflow: hidden;
}
#home .inner-content-section {
	background: linear-gradient(to left, #ffffff 45%, rgba(27, 27, 27, 0)), url(../img/backgrounds/home-page-side-image.jpg) 0 no-repeat;
	padding: 2em 0 8em !important;
	overflow: hidden;
	background-size: inherit;
}
.pre-footer-section {
    background-image: url("/img/backgrounds/bridge3-gray.jpg");
    background-size: cover;
    background-attachment: fixed;
    height: 43em;
}
.pre-footer-section div[class*='col-']:last-child {
	background: url(/img/backgrounds/page-header-bg.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 .hours p {
	display:flex;
	padding:0 200px 0 0;
	flex-direction:row;
	justify-content:space-between;
}
.pre-footer-section a {
	/* background:#252525; */
	margin: 40px 0 0;
	color:#fff;
	font-size: 20px;
	font-weight:700;
}
.pre-footer-section a:hover {
	color:#8a8a8a;
}

/*******************  Linearicons *************************/
.lnr {
  display: inline-block;
  fill: currentColor;
  width: 1em;
  height: 1em;
  vertical-align: -0.2em;
  cursor: pointer;
}

.lnr-chevron-right {
  color: #232323;
  /* We can use "color" for setting the color
  of the SVG because we set its "fill" to
  "currentColor" */
  font-size: 22px;
  /* We can use "font-size" for changing the size
  of the SVG because its width and height were
  set 1em.
  To get crisp results, use sizes that are
  a multiple of 20; because Linearicons was
  designed on a 20 by 20 grid. */
}

.lnr-star {
	font-size:25px !important;
	position:relative;
	top: -12px;
}



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

body {
	font-family: 'Montserrat', sans-serif;
	visibility:hidden;
}


a {
	cursor:pointer;
	text-decoration: none !important;
}

a:hover {
    color: #252525;
    text-decoration: underline;
}
#image-uploads .badge {
	font-size:1.2em;
}
#image-uploads form {
	display:flex;
	justify-content:space-between;
}
#image-uploads #upload-preview .btn {
	background-color:#d84a4a;
	color:#fff;
}
#image-uploads .btn {
	padding:6px 20px;
	margin:0 10px;
	outline: none !important;
	background-color: transparent;
	border-color: #929292;
	color: #333;
}
#image-uploads .btn:hover {
	background-color:#2d2d2d;
	color:#fff;
}

#image-uploads .btn-primary.disabled,
#image-uploads .btn-primary.disabled span,
.btn-primary:disabled,
.btn-primary:disabled span {
	color:#fff;
	border: none;
	cursor: not-allowed;
}
.btn {
	cursor:pointer;
	background: #9bca66;
	padding: 10px 37px;
	color: white;
	font-weight: bold;
	margin-top: 11px;
}
.btn.alert-trigger {
	color:#fdfdfd;
	background-color:#333;
}
.btn:hover {
    opacity: 0.9;
}
.inner-content-section .btn {
	background:transparent;
	border-color: #949494;
	color: #333;
}
.inner-content-section .btn:hover {
	background-color: #3e3e3e;
	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;
}


.section-divider {
	position:relative;
	padding: 80px 0;
}

.estimate-section-divider .alert, .estimate-section-divider .alert p {
    text-align: left;
    font-size: inherit;
}
.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;
}

.block-overlay {
	position:absolute;
	display:inline-block;
	background:rgba(0, 0, 0, 0.6);
	width:100%;
	height:100%;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:0;
}


/********* Set Timeout Function FadeDiv Styling **********/
.fadeDiv {
	position:fixed;
	display: inline-block;
	/* width:100%; */
	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;
	/* background:red; */
	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: 0em;
	display: flex;
	justify-content: center;
	align-items: center;
	/* padding-right: 40px; */
}

.overlay {
	height: 100%;
	width: 100%;
	background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

#myBtn {
    display: block; /* Hidden by default */
    width: 50px;
    height: 50px;
    position: fixed; /* Fixed/sticky position */
    top:100%; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #000000; /* Set a background color */
    color: #ffffff;
    cursor: pointer; /* Add a mouse pointer on hover */
    font-size: 14px;
    padding-top: 0; /* Some padding */
    border-radius: 0px; /* Rounded corners */
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
#myBtn i {
	color: white;
}
#myBtn:hover {
    background-color: #424242; /* Add a dark-grey background on hover */
    color:#fff;
}


/*******************  Jarallax Styling *************************/

.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    /* support for plugin https://github.com/bfred-it/object-fit-images */
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}



/*Blog Page Start*/
.blog1 {
	padding: 125px 0 75px 0;
	background: rgb(255,255,255);
}
.blog1 h1 {
	text-align: center;
	font-weight: 600;
	font-family: 'font2';
	padding-bottom: 25px;
	color: #28256c;
	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 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:630px;
}
.blog1 .pad {
	padding: 15px 10px 0px 10px;
}
.blog1 span {
	color: #28256c;
}
.blog1 p {
	/*font-family: 'font';*/
	color: rgb(20,20,20);
	font-size: 1.15rem;
	font-family: 'Arial';
}
.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: #28256c;

	padding: 100px 0 50px 0;
}
.blog-top .box {
	padding: 110px 45px 0px 50px;
}
.blog-top h1 {
	color: white;
	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: rgb(255,255,255);
	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 h1 {
	color: rgb(20,20,20);
	text-align: left;
	font-weight: 600;
	font-family: 'font2';
	font-size: 35px;
}
.blog-template h2 {
	font-family: 'font2';
	color: rgb(20,20,20);
	font-size: 33px;
	text-shadow: 0 0 black;
	font-weight:900;
	text-align:left;
}
.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: 1.1rem;
	/*font-family: 'font2';*/
	font-family: 'Arial';
	font-weight: 500;
}
.blog-template li {
	color: rgb(20,20,20);
	font-size: 17px;
	font-family: 'font';
}
.blog-template span{

	font-weight: 900;
	text-shadow: 0 0 black;
	/*text-decoration: underline;*/
}
.blog-template span.transformer {

	font-weight: 900;
	text-shadow: 0 0 black;
	text-decoration: underline;
}
.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);
}
/*Blog Page End*/




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

.body-wrapper {
	position:relative;
	height:100%;
	width:100%;
	background: white;
	top: 0;
	left: 0;
	-webkit-transition-property: all;
	-webkit-transition-duration: .20s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-property: all;
	transition-duration: .20s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.body-wrapper-animate {
	margin-left:-400px;
	-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;
}
.sidebar-flyout {
    position: fixed;
    background: linear-gradient(rgb(25, 25, 25), rgba(0, 0, 0, 0.95)), url(/img/backgrounds/adjusting-lawn-sprinkler.jpg) -30em 0 no-repeat !important;
    background-size: cover;
    z-index: 4;
    height: 100%;
    width: 400px;
    top: 0;
    right: 0;
    margin-right: -400px;
    background: #101010;
    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;
}
.sidebar-flyout ul li a .block-overlay {
	opacity:1;
	-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;
	display: none;
}
.sidebar-flyout ul li a:hover .block-overlay {
	opacity:0;
}
.sidebar-flyout h2 {
	position: relative;
	color: white;
	line-height: 32px;
	font-size: 1.5em;
}
.sidebar-flyout h3 {
	font-size:1.5em;
	margin-left: 50px;
	margin-top: 1em;
	text-transform:uppercase;
	color: #e6e6e6;
}
.sidebar-flyout h3 img {
	width:8%;
}
.sidebar-flyout ul {
	list-style:none;
	color: #ffffff;
	margin: 30px 0 0;
	padding: 0 0 30px;
	overflow-y: scroll;
	position: relative;
	height: 100vh;
}
.sidebar-flyout ul::-webkit-scrollbar {
	width: 0 !important;
}
.sidebar-flyout ul li a {
	display: block;
	padding: 10px 50px;
	position: relative;
	align-items:center;
	height:100%;
	width:inherit;
	text-decoration: none;
}
.sidebar-flyout ul li a img {
    max-width: 100%;
    height: auto;
    width: 100%;
}
.sidebar-flyout-animate {
	margin-right: 0;
}
.sidebar-flyout .lnr {
	color: white;
	font-size: 1em;
}
.sidebar-flyout .services-button {
	position:absolute;
	padding: 0;
	margin: 0;
	top: 18px;
	right: 20px;
}
.sidebar-flyout ul li a {
	color: #e6e6e6;
	font-weight: 400;
}



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;
}
body#image-upload-page {
	visibility:visible;
}

.top-header {
	position: relative;
	width:100%;
	z-index:1;
	padding: 0px 0;
	z-index: 3;
	background: white;
	padding-top: 0;
	display: none;
}
.mobile-top-header {
	display:none;
}

.mobile-top-header .fa-bars {
    /* position: relative; */
    /* left: -326px; */
    top: 5px;
}

.mobile-top-header .fa-envelope-o {
    /* position: relative; */
    /* left: 161px; */
    /* top: -72px!important; */
}



.top-header2 {
	position: relative;
	width:100%;
	z-index:1;
	padding: 45px 0;
	z-index: 3;
	background: white;
	/* padding-top: 8%; */
}

.top-header2 .header-contact_info {
    font-size: 1em;
    font-weight: 400;
    color: #297cae;
    padding: 0;
    margin: 0;
    position: relative;
    top: 498px;
    left: -683px;
}

.top-header .navbar-brand {
    position: absolute;
    top: 0;
}

.top-header div[class*='col-']:first-child {
	display:flex;
	justify-content: flex-start;
	align-items:center;
}
.top-header div[class*='col-']:first-child a {
	/* padding:5px 20px; */
	font-size:15px;
	border: 1px solid #fff;
	border-radius:100px;
	-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: flex-end;
	align-items:center;
}
.top-header div[class*='col-']:nth-child(3) {
	display:flex;
	justify-content:center;
	align-items:center;
	position: relative;
	top: 104px;
	left: -7px;
}
.top-header div[class*='col-']:nth-child(4) {
	display:flex;
	justify-content:center;
	align-items:center;
}
.top-header div[class*='col-']:nth-child(5) {
	display:flex;
	justify-content: flex-start;
	align-items:center;
}

.top-header a,
.top-header i {
	color: #b7b7b7;
	position: relative;
	margin: 0;
}

.top-header div[class*='col-']:nth-child(5) a {
	display:flex;
	justify-content:center;
	align-items:center;
	border: 1px solid #dcdcdc;
	border-radius:100px;
	height: 34px;
	width: 34px;
	margin: 0 4px;
}
.top-header div[class*='col-']:nth-child(5) a:hover {
	background: #0a0a0a;
	text-decoration:none !important;
	color: #929292;
}

.navbar-scroll {
	padding: 25px  0;
	position: r;
	width: 100%;
	background: none;
	z-index: 4;
}

.navbar-scroll2 {
	padding: 12px  0;
	position: fixed;
	width: 100%;
	background: white;
	z-index: 4;
	box-shadow: 0 0 2px 0 #000;
}


#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 16px;
	padding: 6px 0px;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	color: #808080;
	font-family: 'Montserrat', sans-serif;
	/* cursor: pointer; */
	overflow: hidden;
	position: relative;
	top: 0;
}
.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: #9aca67;
}
.navbar-light .navbar-nav .active>.nav-link:before, .navbar-light .navbar-nav .nav-link.active:before {
	position:absolute;
	content:'';
	width:100%;
	height: 1px;
	bottom:3px;
	left:0;
	background:#e6e6e6;
}
#projects .navbar-light .navbar-nav .active>.nav-link:before, #projects .navbar-light .navbar-nav .nav-link.active:before {
	position:absolute;
	content:'';
	width:100%;
	height: 1px;
	bottom:3px;
	left:0;
	background:#4e4e4e;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #bbbbbb;
}

.navbar-light .navbar-nav li a {
	position:relative;
}
.navbar-light .navbar-nav .nav-link li:focus ::before, .navbar-light .navbar-nav li:hover ::before {
	position:absolute;
	content:'';
	width:100%;
	height:1px;
	bottom:3px;
	left:0;
	background:#e6e6e6;
}
#projects .navbar-light .navbar-nav .nav-link li:focus ::before, #projects .navbar-light .navbar-nav li:hover ::before {
	position:absolute;
	content:'';
	width:100%;
	height:1px;
	bottom:3px;
	left:0;
	background:#4e4e4e;
}
.navbar-light .navbar-nav li:active ::before {
	position:absolute;
	content:'';
	width:100%;
	height:1px;
	bottom:3px;
	left:0;
	background:#e6e6e6;
}

.navbar-collapse {
	height:100%;
}

#logo-pic {
    width: 25%;
}

.shrink {
	height: 85px;
	background-color: #f7f7f7;
	border: none;
	margin-top: 0;
}


.remove {
	display: none;
}
.small {
	height: 180px;
    width: 180px;
	-webkit-transition: all .4s ease;
  	transition: all .4s ease;
	margin-left: 25px;
}

/* ***** NAVBAR 2 ***** */
#logo-pic2 {
    width: 85%;
    position: relative;
    top: 29px;
    left: 45px;
}

.top-header2 div[class*='col-']:nth-child(5) a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: 100px;
    height: 40px;
    width: 40px;
    margin: 0 4px;
    color: white;
}

.top-header2 div[class*='col-']:nth-child(5) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


/* ========================================================== */
/* 			           HOME PAGE 		                      */
/* ========================================================== */

.estimate-section-divider {
	background:#e0e0e0;
	text-align:center;
}

iframe {
	border:none;
}
#home .about-welcome-section {
	background-color: yellow;
}

.home-showcase {
	position:relative;
	text-align:center;
}
/* Home Showcase */
.home-showcase #title {
    padding: 0 0 50px;
    /* color: white; */
    /* position: relative; */
    /* top: 710px; */
    /* left: 495px; */
    /* z-index: 1; */
    /* font-size: 3em; */
    /* text-align: center; */
}

.home-showcase #pic1 {
    /* background-image: url("/img/backgrounds/hose-left.jpg"); */
    /* background-size: cover; */
    /* height: 57em; */
    margin-top: 50px;
    opacity:0;
}

.home-showcase #pic2 {
    /* background-image: url("/img/backgrounds/hose-right.jpg"); */
    /* background-size: cover; */
    /* height: 57em; */
}

#logo-pic {
    /* top: 0; */
    /* left: -22px; */
    z-index:;
}

/*Home Welcome Section*/
.home-welcome-section {
    text-align: center;
    padding: 60px 0;
    background: #cecece;
}

.home-welcome-section #row2 {
    margin-top: 4%;
    text-align: center;
}

.home-welcome-section .content-wrap {
    overflow: hidden;
} 

.home-welcome-section .pic1 {
    background-image: url(/img/backgrounds/installer.jpg);
    background-size: cover;
    -webkit-transition: all .2s ease;
  	transition: all .2s ease;
}

.home-welcome-section .pic1:hover {
    transform: scale(1.2);
}

.home-welcome-section .pic2 {
    background-image: url(/img/backgrounds/design.jpeg);
    background-size: cover;
    -webkit-transition: all .2s ease;
  	transition: all .2s ease;
}

.home-welcome-section .pic2:hover {
    transform: scale(1.2);
}

.home-welcome-section .pic3 {
    background-image: url(/img/backgrounds/lawn-mower.jpg);
    background-size: cover;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.home-welcome-section .pic3:hover {
    transform: scale(1.2);
}

.home-welcome-section h1 {
    color: #272727;
    font-size: 2em;
    font-weight: 500;
    text-transform: uppercase;
}

.home-welcome-section h3 {
    margin-top: 22px;
    color: #656565;
}

.home-welcome-section p {
    color: #797171;
}

.home-welcome-section .overlay {
    padding: 26% 0%;
    background: rgba(0, 0, 0, 0.48);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: #ffffff;
}

.home-welcome-section .overlay:hover {
    background: rgba(0, 0, 0, 0.57);
    color: white;
}

/*Section A*/
.section-a {
    text-align: -webkit-left;
    background: white;
    padding: 5%;
}

.section-a .overlay {
    padding: 4% 0%;
    background: #0000005c;
    color: white;
}

.section-a li {
    margin-bottom: 12px;
    font-weight: normal;
    font-size: 22px;
    color: gray;
}

/*Section B*/
.section-b {
    background: white;
    padding: 4% 0%;
}

.section-b .pic {
    background-image: url(/img/backgrounds/roll-install.jpg);
    background-size: cover;
    background-position: 0% 44%;
    width: 100%;
    padding: 30%;
    position: relative;
    left: 69px;
}

.section-b #info {
    padding: 7% 0%;
    text-align: right;
}

.section-b h2 {
    color: #0d3345;
}

.section-b p {
    color: #797171;
}

/*Section C*/
.section-c {
    background: #f3f3f3;
    padding: 4% 0%;
    text-align: center;
}

.section-c #info {
    background: #f3f3f3;
    margin-right: 10px;
    margin-top: 10px;
    padding: 2% 1%;
}

.section-c #icon1 {
    width: 36%;
    margin-bottom: 19px;
}

.section-c #icon2 {
    width: 11%;
    margin-bottom: -11px;
    position: relative;
    top: -19px;
}

.section-c #icon3 {
    width: 28%;
    margin-bottom: 12px;
    position: relative;
    top: 0px;
}

.section-c #icon4 {
    width: 31%;
    margin-bottom: 19px;
}

.section-c #icon5 {
    width: 38%;
    margin-bottom: -5px;
    position: relative;
    top: -15px;
}

.section-c #icon6 {
    width: 37%;
    margin-bottom: 37px;
    position: relative;
    top: 19px;
}

.section-c h1, .section-c h4 {
    color: #000000;
}

.section-c p {
    color: #797171;
}

.section-c #grass {
    width: 143%;
    position: relative;
    left: -119px;
}

/*Section D*/
.section-d {
    background-image: url(/img/backgrounds/mower.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.section-d .overlay {
    padding: 6% 0%;
    background: rgba(15, 128, 41, 0.23);
    color: white;
    text-align: center;
}


/* CUSTOMIZE TABS
-------------------------------------------------- */



/* CUSTOM CAROUSEL
-------------------------------------------------- */


/* ========================================================== */
/* 			           ABOUT PAGE                         	  */
/* ========================================================== */

.about-info-section {
	padding: 50px 20px;
	background: #ffffff;
	color: #888888;
	text-align: center;
}
.about-info-section p {
	text-align: left;
	color: rgba(51,51,51,1);
}
.about-info-section strong {
	color: rgba(34,34,34,1);
}
.about-info-section li {
	text-align: left;
	color: rgba(51,51,51,1);
}
.about-info-section h3 {
	color: #888888;
	font-weight: normal;
}
.about-info-section h4 {
	color: rgba(34,34,34,1);
}
.about-info-section div[class*='col-'] {
	padding: 45px 30px;
}
.about-info-section .row:first-child {
	border-bottom: none;
}
.about-info-section div[class*='col-']:first-child {
	border-right: none;
}

.about-header-section {
    text-align: center;
    padding: 150px 0;
    background: linear-gradient(to bottom right, rgba(100, 2, 175, 0.46), rgba(22, 0, 39, 0.87) 44%), url(../img/backgrounds/bridge.jpg) 0 -15em no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    position: relative;
}
.about-header-section h1 {
	color:#fff;
}



/* ABOUT HISTORY SECTION */
.about-history-section {
    padding: 3%;
    text-align: center;
    background: #cecece;
    color: #5a5a5a;
}

#about-list {
    list-style: none;
}



/* ========================================================== */
/*                    SERVICE PAGE TEMPLATE                   */
/* ========================================================== */

.service-page {
  position: relative;
  overflow: hidden;
  background: #f7f7f8;
  color: #222222;
  font-family: inherit;
}

.service-page,
.service-page * {
  box-sizing: border-box;
}

.service-page p {
  color: #444444;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 18px;
  text-align: left;
}

.service-page strong {
  color: #111111;
}

.service-page h1,
.service-page h2,
.service-page h3,
.service-page h4 {
  color: #111111;
  line-height: 1.15;
  margin-top: 0;
}

.service-page h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}

.service-page h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

.service-page h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-page h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-page a {
  color: rgb(40,37,108);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-page a:hover {
  color: #111111;
}

.service-page img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 14px 14px 0 rgba(40,37,108,0.18), 0 24px 50px rgba(0,0,0,0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-page img:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 rgba(40,37,108,0.25), 0 28px 60px rgba(0,0,0,0.20);
}

.service-page ul {
  padding-left: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-page li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 13px;
  color: #444444;
  font-size: 18px;
  line-height: 1.65;
  text-align: left;
}

.service-page li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(40,37,108,0.10);
  color: rgb(40,37,108);
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

/* Layout Sections */
.service-section {
  position: relative;
  padding: 95px 0;
}

.service-section-sm {
  padding: 65px 0;
}

.service-section-white {
  background: #ffffff;
}

.service-section-soft {
  background:
    radial-gradient(circle at top left, rgba(40,37,108,0.055), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.04), transparent 32%),
    #f7f7f8;
}

.service-section-dark {
  background: #111111;
  color: #ffffff;
}

.service-section-dark h1,
.service-section-dark h2,
.service-section-dark h3,
.service-section-dark h4,
.service-section-dark p,
.service-section-dark li {
  color: #ffffff;
}

.service-hero {
  padding: 115px 0 90px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82)),
    url("img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-hero .row,
.service-split .row {
  align-items: center;
}

/* Eyebrow */
.service-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(40,37,108,0.10);
  color: rgb(40,37,108);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-section-dark .service-eyebrow {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

/* Cards / Panels */
.service-intro-card,
.service-content-card,
.service-highlight-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(40,37,108,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.07);
}

.service-content-card {
  height: 100%;
}

.service-highlight-panel {
  background:
    linear-gradient(135deg, rgba(40,37,108,0.08), rgba(255,255,255,0.96)),
    rgba(255,255,255,0.96);
}

.service-highlight-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(40,37,108,0.09);
}

.service-highlight-panel > * {
  position: relative;
  z-index: 1;
}

/* Grids */
.service-card-grid,
.service-process-grid,
.service-faq-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.service-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-card,
.service-process-step,
.service-faq-item {
  position: relative;
  height: 100%;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f9f9fb);
  border: 1px solid rgba(40,37,108,0.10);
  box-shadow: 0 14px 32px rgba(0,0,0,0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.service-process-step:hover,
.service-faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(40,37,108,0.24);
  box-shadow: 0 18px 42px rgba(0,0,0,0.09);
}

.service-card p,
.service-process-step p,
.service-faq-item p {
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 0;
}

.service-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgb(40,37,108);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(40,37,108,0.24);
}

/* Buttons */
.service-btn,
.service-page .btn,
.service-page .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 0;
  background: #9bca66;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(40,37,108,0.26);
}

.service-btn:hover,
.service-page .btn:hover,
.service-page .btn-primary:hover {
  background: white;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.24);
}

.service-section-dark .service-btn,
.service-section-dark .btn,
.service-section-dark .btn-primary {
  background: #ffffff;
  color: rgb(40,37,108);
  box-shadow: 0 12px 28px rgba(0,0,0,0.20);
}

.service-section-dark .service-btn:hover,
.service-section-dark .btn:hover,
.service-section-dark .btn-primary:hover {
  background: #f2f2f2;
  color: #111111;
}

/* Helpers */
.service-list-columns {
  margin-top: 20px;
}

.service-image-stack {
  display: grid;
  gap: 24px;
}

.service-image-note {
  margin-top: 18px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(40,37,108,0.07);
  border: 1px solid rgba(40,37,108,0.12);
}

.service-image-note p {
  font-size: 16.5px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .service-card-grid,
  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .service-hero {
    padding: 80px 0 65px;
  }

  .service-section {
    padding: 70px 0;
  }

  .service-section-sm {
    padding: 55px 0;
  }

  .service-intro-card,
  .service-content-card,
  .service-highlight-panel {
    padding: 28px;
  }

  .service-page img {
    margin-top: 26px;
    box-shadow: 10px 10px 0 rgba(40,37,108,0.18), 0 20px 42px rgba(0,0,0,0.14);
  }

  .service-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .service-hero {
    padding: 60px 0 50px;
  }

  .service-section {
    padding: 55px 0;
  }

  .service-section-sm {
    padding: 45px 0;
  }

  .service-page h1 {
    font-size: 34px;
  }

  .service-page h2 {
    font-size: 28px;
  }

  .service-page p,
  .service-page li {
    font-size: 17px;
    line-height: 1.65;
  }

  .service-intro-card,
  .service-content-card,
  .service-highlight-panel,
  .service-card,
  .service-process-step,
  .service-faq-item {
    padding: 22px;
    border-radius: 16px;
  }

  .service-card-grid,
  .service-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-eyebrow {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}



/* SERVICES SECTION */
.services-info-section {
	padding: 6% 20px;
	background: #ffffff;
	color: #888888;
	text-align: center;
}
.services-info-section h3 {
	color: #888888;
	font-weight:700;
}

.services-info-section ul {
    text-align: center;
}

.services-info-section #list1 {
    margin-left: 59%;
}

.services-info-section #list2 {
    margin-left: 4%;
}

.services-info-section div[class*='col-'] {
    padding: 45px 30px;
    text-align: center;
}
.services-info-section .row:first-child {
	border-bottom: none;
}
.services-info-section div[class*='col-']:first-child {
	border-right: none;
}

.services-header-section {
    text-align: center;
    padding: 150px 0;
    background: linear-gradient(to bottom right, rgba(100, 2, 175, 0.46), rgba(22, 0, 39, 0.87) 44%), url(../img/backgrounds/bridge.jpg) 0 -15em no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    position: relative;
}
.services-header-section h1 {
	color:#fff;
}


/* SERVICES A SECTION */
.services-A-section {
    padding: 3%;
    text-align: center;
    background: #cecece;
    color: #5a5a5a;
}

#about-list {
    list-style: none;
}

.services-area {
    color: #888888;
}

.services-area div[class*='col-sm'] {
    padding: 3% 1% 0;
}

.services-area div[class*='col-sm'] {
    padding: 3% 1% 0;
}

.services-area #row2 {
    padding-bottom: 10%;
}

.services-info-section ul {
    text-align: left;
}

/* .services-info-section ul li:before {
    content: '~';
  } */


/* CUSTOM CAROUSEL
-------------------------------------------------- */


/* ========================================================== */
/* 			           SERVICES PAGE                          */
/* ========================================================== */



/* CUSTOMIZE TABS
-------------------------------------------------- */



/* CUSTOM CAROUSEL
-------------------------------------------------- */


/* ========================================================== */
/* 			            INSALL PAGE                           */
/* ========================================================== */

.install-a {
    padding: 5% 1%;
    background: white;
}

.install-a .pic {
    background-image: url("/img/backgrounds/install2.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 320px;
}

.install-a .overlay {
    background: rgba(255, 255, 255, 0.09);
}

.install-a h1 {
    color: #656565;
}

.install-a p {
    color: #797171;
}


/* ========================================================== */
/* 			            DESIGN PAGE                           */
/* ========================================================== */

.design-a {
    padding: 5% 1%;
    background: white;
}

.design-a .pic {
    background-image: url("/img/backgrounds/yard.jpeg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 320px;
}

.design-a .overlay {
    background: rgba(255, 255, 255, 0.09);
}

.design-a h1 {
    color: #656565;
}

.design-a p {
    color: #797171;
}

/* ========================================================== */
/* 			            MAINTAIN PAGE                         */
/* ========================================================== */

.maintain-a {
    padding: 5% 1%;
    background: white;
}

.maintain-a .pic {
    background-image: url("/img/backgrounds/lawn.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 320px;
}

.maintain-a .overlay {
    background: rgba(255, 255, 255, 0.09);
}

.maintain-a h1 {
    color: #656565;
}

.maintain-a p {
    color: #797171;
}

/* ========================================================== */
/* 			            REPLACEMENTS PAGE                     */
/* ========================================================== */

.replacement-a {
    padding: 5% 1%;
    background: white;
}

.replacement-a .pic {
    background-image: url("/img/backgrounds/acunit2.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 320px;
}

.replacement-a .overlay {
    background: rgba(255, 255, 255, 0.09);
}

.replacement-a h1 {
    color: #656565;
}

.replacement-a p {
    color: #797171;
}

/* ========================================================== */
/* 			            RESIDENTIAL PAGE                      */
/* ========================================================== */

.residential-a {
    padding: 5% 1%;
    background: white;
}

.residential-a .pic {
    background-image: url("/img/backgrounds/backyard-grass.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 320px;
}

.residential-a .overlay {
    background: rgba(255, 255, 255, 0.09);
}

.residential-a h1 {
    color: #656565;
}

.residential-a p {
    color: #797171;
}

/* ========================================================== */
/* 			            PROFESSIONALS PAGE                    */
/* ========================================================== */

.professionals-a {
    padding: 5% 1%;
    background: white;
}

.professionals-a .pic {
    background-image: url("/img/backgrounds/black-room.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 320px;
}

.professionals-a .overlay {
    background: rgba(255, 255, 255, 0.09);
}

.professionals-a h1 {
    color: #656565;
}

.professionals-a p {
    color: #797171;
}

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

#portfolio {
    display: block;
  }
  
  #portfolio li {
    display: block;
    float: left;
    /* width:280px; */
    /* height:160px; */
    position:relative;
    margin:10px;
    overflow:hidden;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 1px 2px 2px rgba(0,0,0,0.25);
    -moz-box-shadow: 1px 2px 2px rgba(0,0,0,0.25);
    box-shadow: 1px 2px 2px rgba(0,0,0,0.25);
  }
  
  #portfolio li a {
    display:block;
    background: #fff;
    width:100%;
    height:140px;
    width:260px;
    overflow:hidden;
    position:relative;
  
    -o-transition:all .30s ease;
      -moz-transition:all .30s ease;
      -webkit-transition:all .30s ease;
      transition:all .30s ease;
  }
  #portfolio li a img {
     position: absolute;
     top: -9999px;
     bottom: -9999px;
     left: -9999px;
     right: -9999px;
     margin: auto;
      width: 120%;
  }
  
  #portfolio li a:hover {
      opacity:.8;
      transform:scale(1.1);
  }
  
  /*GALLERY SHOWCASE*/
  .gallery-showcase {
      background-image: url("/img/backgrounds/slider-bg-1.jpg");
      background-size: cover;
      padding: 0% 0;
      padding-top: 120px;
      text-align: center;
  }
  
  .gallery-showcase h1 {
      position:relative;
      top: 106px;
      left: 0;
      font-size: 63px;
      color: white;
  }
  
  /*GALLERY A*/
  .gallery-a {
      text-align: center;
      padding: 4% 5%;
  }
  
  .gallery-a .image {
      width: 29%;
      height: 339px;
  }
  
  .carousel-control-prev {
      left: 0;
      top: 105px;
      background: black;
      width: 3%;
      height: 18%;
  }
  
  .carousel-control-next {
      right: 12px;
      top: 105px;
      background: black;
      width: 3%;
      height: 18%;
  }
  
  
  /* ========================== Gallery ZoomIn Effect ================================ */
  
  .mfp-with-zoom .mfp-container,
  .mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  
  .mfp-with-zoom.mfp-ready .mfp-container {
      opacity: 1;
  }
  .mfp-with-zoom.mfp-ready.mfp-bg {
      opacity: 0.8;
  }
  
  .mfp-with-zoom.mfp-removing .mfp-container,
  .mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
  }


button.mfp-close, button.mfp-arrow {
	outline:none !important;
}

.gallery-section-divider {
	overflow:hidden;
	position: relative;
	padding: 20px 0 80px;
}
.gallery-section-divider h1 {
	padding:40px 0 20px;
}

.projects-section {
	position:relative;
	overflow:hidden;
}
#project-1 .projects-section img {
	transform:scale(1.08,1.08)
}

.projects-section .mosaic-row {
	position: absolute;
    width: 100%;
    height: auto;
    top: 0;
}
.projects-section .mosaic-row div[class*='col-'] {
	position: absolute;
    top: 0;
    right: 0;
}
.projects-section a img {
	transform: scale(1.06,1.06);
	-webkit-transition: all .30s ease;
	-moz-transition: all .30s ease;
	-o-transition: all .30s ease;
	transition: all .30s ease;
}
.projects-section a:hover img {
	transform:scale(1.3,1.3);
}
.projects-section a .block-overlay {
	display:flex;
	justify-content:center;
	align-items:center;
	background-color:#08080891;
	opacity:0;
	z-index:1;
	-webkit-transition: all .30s ease;
	-moz-transition: all .30s ease;
	-o-transition: all .30s ease;
	transition: all .30s ease;
}
.projects-section a .block-overlay p {
	color:#f18907;
	font-size:1.3em;
	font-weight:100;
}
.projects-section a:hover .block-overlay {
	background-color:rgba(247, 247, 247, 0.97);
	opacity:1;
}
.projects-section div[class*='col-'] {
	padding:0;
	position: relative;
	overflow: hidden;
}



.gallery-a {
    padding: 6% 0%;
    text-align: center;
    background: white;
}

#portfolio {
  display: flex;
  padding: 0;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}

#portfolio li {
  display: block;
  float: left;
  position:relative;
  overflow:hidden;
}

#portfolio li a {
  display:block;
  background: #fff;
  width:100%;
  height: 15em;
  width: 22em;
  overflow:hidden;
  -o-transition:all .30s ease;
  -moz-transition:all .30s ease;
  -webkit-transition:all .30s ease;
  transition:all .30s ease;
}
#portfolio li a img {
   position: absolute;
   top: -9999px;
   bottom: -9999px;
   left: -9999px;
   right: -9999px;
   margin: auto;
   width: 100%;
   height: 100%;
}

#portfolio li a:hover {
	opacity:.8;
	transform:scale(1.1);
}

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

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
    -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}


/* ========================================================== */
/* 			           CONTACT PAGE                           */
/* ========================================================== */

.header-contact_info {
	font-size: 1em;
	font-weight:400;
	color:#297cae;
	/* padding:0; */
	margin:0;
	position: relative;
	top: 46px;
	left: 0;
}
.contact-header-section {
	position:relative;
	background-image: url(/img/backgrounds/fence4.jpg);
	background-size: cover;
	color:#ffffff;
	padding:168px 0 80px;
}
.contact-content-section {
	background: white;
}
.contact-content-section .the-dream {
	background:#d4bc99;
	padding:50px;
	color:#655757;
}
.contact-content-section .the-dream a {
	font-weight:700;
	color:#525252;
}
.contact-content-section .the-dream h3 {
	font-weight:700;
}
.contact-content-section .form {
	padding: 30px;
	background: #e6e6e6;
}
.contact-content-section #general-form {
	background-color:#a5141400 !important;
}

/* Ricky's Contact Section */
.contact-section {
    padding: 5%;
    color: #888888;
}

.contact-section .the-dream {
	background:#d4bc99;
	padding:50px;
	color:#655757;
}
.contact-section .the-dream a {
	font-weight:700;
	color:#525252;
}
.contact-section .the-dream h3 {
	font-weight:700;
}
.contact-page-section-1 .form {
	padding: 30px;
	background: #ffffff;
}
.contact-section #general-form {
	background-color:#a5141400 !important;
}

.contactMe .btn {
    border: 0;
    position: relative;
    left: 175px;
    width: 33%;
    background: #383838;
    color: #FFF;
    font-weight: 400;
    cursor: pointer;
    padding: 12px 40px;
    margin-top: 10px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 0;
}

.contact-info {
    text-align: right;
    list-style-type: none;
}

.contact-info li {
    margin-top: 16px;
}

/* ========================================================== */
/* 			            REVIEWS PAGE                          */
/* ========================================================== */
.reviews-a {
    background: white;
    text-align: center;
    padding: 7%;
}

.reviews-a h1 {
    color: #0f8029;
}

.reviews-a p {
    margin-top: 0;
    margin-bottom: 0rem;
    color: gray;
}

.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;
}

.bottom-section .pic1 {
    background-image: url("/img/backgrounds/acunit2.jpg");
    background-size: cover;
    background-position: 0% 82%;
    text-align: center;
}

.bottom-section .col-sm {
    padding: 0;
}

.bottom-section .overlay {
    background: #ffffffb0;
    padding: 7%;
}

/* ========================================================== */
/* 			            ARTIFICIAL PAGE                       */
/* ========================================================== */
.artificial-a {
    padding: 5% 1%;
    background: white;
}

.artificial-a .pic {
    background-image: url("/img/backgrounds/gallery9.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 320px;
}

.artificial-a .overlay {
    background: rgba(255, 255, 255, 0.09);
}

.artificial-a h1 {
    color: #656565;
}

.artificial-a p {
    color: #797171;
}

/* ========================================================== */
/* 			            SERVICE AREA PAGE                     */
/* ========================================================== */

.service-area-section-1{
	
	padding: 200px 0;
	
}

.service-area-section-1 {
	
	padding: 200px 0;
	
}
.service-area-section-1 p {
	text-align: left;
	color: rgb(51, 51, 51);
}
.service-area-section-1 strong {
	color: rgba(34,34,34,1);
}
.service-area-section-1 li {
	text-align: left;
	color: rgba(51,51,51,1);
}
.service-area-section-1 h1{
	font-size: 2.5rem;
}
.service-area-section-1 h2 {
	color: #888888;
	font-weight: normal;
}
.service-area-section-1 h3 {
	color: #888888;
	font-weight: normal;
	font-size: 1.25rem;
}
.service-area-section-1 h4 {
	color: rgba(34,34,34,1);
}
.service-area-section-1 iframe {
	width: 100%;
	height: 350px;
	box-shadow: 1px 1px 10px 1px black;
	border-radius: 15px; 
}



/**/
/*.service-area {*/
/*    padding: 5% 1%;*/
/*    background: white;*/
/*}*/
/**/
/*.service-area .pic {*/
/*    background-image: url("/img/backgrounds/lawn-mower.jpg");*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    width: 100%;*/
/*    height: 320px;*/
/*}*/
/**/
/*.service-area .overlay {*/
/*    background: rgba(255, 255, 255, 0.09);*/
/*}*/
/**/
/*.service-area h1 {*/
/*    color: #656565;*/
/*}*/
/**/
/*.service-area p {*/
/*    color: #797171;*/
/*}*/


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

.footer-section {
	padding: 3% 0;
	background: #28256c;
	color: #ebebeb;
	font-size: 14px;
	font-weight: 400;
}

.footer-section img {
    width: 20%;
    display: flex;
/*    margin: auto;*/
}

.footer-section .col-lg-8 {
    margin: auto;
    margin-top: 5%;
    text-align: center;
}

.footer-section a {
	color: #ebebeb;
}
.footer-section .service-cities p {
	margin:0 0 3px;
}
.service-cities {
	margin-bottom:1em;
}
.service-cities h4 {
	font-size:20px;
}
.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 #444;
	border-radius:100px;
	height:28px;
	width:28px;
	margin: 0 4px;
}
.bottom-footer div[class*='col-']:nth-child(3) a:hover {
	background: #0a0a0a;
	text-decoration:none !important;
	color: #929292;
}

.bottom-footer {
    background: #28256c;
    color: white;
}

.bottom-footer a {
    color: #acacac;
}


#sc-footer,
#sc-footer * {
  box-sizing: border-box;
}

#sc-footer {
  background: #f7f6f2;
  color: #17256f;
  font-family: inherit;
}

#sc-footer a {
  color: inherit;
  text-decoration: none;
}

#sc-footer a:hover {
  text-decoration: underline;
}

.sc-footer-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sc-footer-main {
  background: #f7f6f2;
  padding: 70px 0 60px;
}

.sc-footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 90px;
  align-items: start;
}

.sc-footer-logo {
  max-width: 285px;
  height: auto;
  display: block;
  margin-bottom: 38px;
}

.sc-footer-brand h3 {
  color: #17256f;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.sc-footer-brand p,
.sc-service-card p,
.sc-footer-address,
.sc-footer-parent {
  color: #33384f;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 7px;
}

.sc-footer-brand strong {
  color: #111a4f;
}

.sc-footer-service h2 {
  color: #17256f;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.sc-footer-rule {
  width: 100%;
  height: 1px;
  background: #c9c9c9;
  margin-bottom: 18px;
}

.sc-footer-service h3 {
  color: #17256f;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.sc-footer-parent {
  font-weight: 600;
  margin-bottom: 12px;
}

.sc-footer-address {
  font-weight: 600;
  margin-bottom: 28px;
}

.sc-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
  row-gap: 28px;
}

.sc-service-card h4 {
  color: #17172a;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 9px;
}

.sc-service-card strong {
	 color: #5C7F1F; font-weight: 600; 
}

.sc-service-card p {
  font-size: 13px;
  margin-bottom: 5px;
}

.sc-service-card a {
  color: #52609f;
}

.sc-footer-bar {
  background: #17256f;
  color: #ffffff;
  padding: 18px 0;
}

.sc-footer-bar-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.sc-footer-copy {
  font-size: 13px;
  color: #ffffff;
}

.sc-footer-vms {
  text-align: center;
}

.sc-footer-vms a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #ffffff;
  text-decoration: none;
}

.sc-footer-vms span {
  font-size: 12px;
  line-height: 1;
}

.sc-footer-vms img {
  max-width: 105px;
  height: auto;
  display: block;
}

.sc-footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

.sc-footer-social a {
  width: 25px;
  height: 25px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
}

.sc-footer-social a:hover {
  background: #ffffff;
  color: #6aa638 !important;
  text-decoration: none;
}

.sc-footer-disclaimer {
  background: #eceef7;
  padding: 9px 0 14px;
  text-align: center;
}

.sc-footer-disclaimer p {
  color: #6f7491;
  font-size: 9px;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 991px) {
  .sc-footer-main {
    padding: 55px 0 45px;
  }

  .sc-footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .sc-service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sc-footer-bar-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .sc-footer-social {
    justify-content: center;
  }

  .sc-footer-copy {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .sc-footer-container {
    width: min(100% - 28px, 1180px);
  }

  .sc-footer-logo {
    max-width: 230px;
  }

  .sc-footer-service h2 {
    font-size: 22px;
  }

  .sc-service-card h4 {
    font-size: 16px;
  }
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media screen and (min-width : 1824px) {

}

@media screen and (max-width : 1440px) {
    .home-showcase #pic1 {
        /* height: 50em; */
    }

    .home-showcase #pic2 {
        /* height: 50em; */
    }

    .home-showcase #title {
        /* top: 556px; */
        /* left: 361px; */
    }

    .top-header2 .header-contact_info {
        top: 447px;
        left: -548px;
    }
}

@media screen and (max-width: 1190px) {
	.home-showcase #pic1 {
        /* height: 43em; */
    }

    .home-showcase #pic2 {
        /* height: 43em; */
    }

    .home-showcase #title {
        /* top: 450px; */
        /* left: 298px; */
    }

    #logo-pic {
        /* width: 111%; */
    }

    .about-header-section {
        padding: 145px 0;
    }

    .top-header2 .header-contact_info {
        top: 428px;
        left: -472px;
    }

}

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

.home-page-section-1 {
	padding: 75px 0 75px 0;
	background: url(/img/backgrounds/bandw.jpg);
	background-size: cover;
}
.home-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-1 h4 {
	font-size: 1.75rem;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-1 p.title-description {
	padding: 20px;
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}

}


@media screen and (max-width: 991px) {
	.header-contact_info {
		top: 5px;
	}
	
.top-header div[class*='col-']:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}
	
.top-header div[class*='col-']:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
}
	.top-header div[class*='col-'] {
	width: auto
}
.top-header div[class*='col-']:nth-child(3) {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
}
.top-header  #logo-pic2{
	display:none;
}
.top-header2 #logo-pic2{
	width: 45%;
}


.top-header .row{
    display: flex;
    justify-content: space-around;
}
	.mobile-top-header {
	display: block !important;
}
	#scroll-header {
		display:none;
	}
	.top-header {
    display: none;
    /* position: relative; */
    /* width: inherit; */
    /* z-index: 1; */
    /* padding: 0px 0; */
    /* z-index: 3; */
    /* background: white; */
    /* padding-top: 0; */
}
	
    .top-header div[class*='col-']:first-child a {
        font-size: 26px;
        /* position: relative; */
        /* top: -27px; */
        /* right: 306px; */
    }

    .top-header .fa-envelope-o {
        font-size: 28px;
        /* position: relative; */
        /* top: -75px; */
        /* right: -163px; */
    }

    .home-showcase #pic1 {
        /* height: 28em; */
    }

    .home-showcase #pic2 {
        /* height: 28em; */
    }

    #logo-pic {
        width: 25%;
         position: relative; 
         /*top: -68px; */
         top: -0; 
         left: -0; 
    }
#logo-pic2 {
    width: 50%;
    position: relative;
    top: 29px;
    /*left: 45px;*/
		left: 0; 
}
    .home-showcase #title {
        /* color: white; */
        /* position: relative; */
        /* top: 301px; */
        /* left: 196px; */
        /* z-index: 1; */
        margin: 5px 0 -20px;
        font-size: 1.3em;
        /* text-align: center; */
    }

    .home-welcome-section h1 {
        font-size: 1.8em;

    }

    /* .mobile-top-header {
        display: block;
    } */

    .mobile-trigger {
        color: gray!important;
        font-size: 1.7em;
        position: relative;
 
    }

    .footer-section img {
        width: 22em;
    }

.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;
    /* justify-content: center; */
    /* align-items: center; */
    top: 100%;
    border: 0;
    background: #232323;
    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: 2em;
    color: #c5c5c5 !important;
}
.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;
}

#home .show-form {
	background: white;
	position:relative;
	top:2em;
	left:0;
	opacity: 0;
}

#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;
}
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    color: #fff;
    outline: none;
    z-index: 3;
}
.alert-dismissible .close span {
	font-size: 35px;
}

.home-page-section-1 {
	padding: 75px 0 75px 0;
	background: url(/img/backgrounds/bandw.jpg);
	background-size: cover;
}
.home-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-1 h4 {
	font-size: 1.75rem;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-1 p.title-description {
	padding: 25px;
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}




.about-header-section {
    text-align: center;
    padding: 150px 0;
    background: linear-gradient(to bottom right, rgba(100, 2, 175, 0.46), rgba(22, 0, 39, 0.87) 44%), url(../img/backgrounds/bridge.jpg) 0 0em no-repeat;
    background-attachment: fixed;
    background-size: center;
    position: relative;
}


.services-header-section {
    text-align: center;
    padding: 150px 0;
    background: linear-gradient(to bottom right, rgba(100, 2, 175, 0.46), rgba(22, 0, 39, 0.87) 44%), url(../img/backgrounds/bridge.jpg) 0 -1em no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.services-header-section h1 {
    color: #fff;
		font-size:2rem;
}



.service-cities {
    margin-bottom: 1em;
    text-align: center;
}

.service-cities ul{
	padding: 0; 
}


}




@media screen and (max-width: 425px) {
	
.home-page-section-1 {
	padding: 75px 0 75px 0;
	background: url(/img/backgrounds/bandw.jpg);
	background-size: cover;
}
.home-page-section-1 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-1 h4 {
	font-size: 1.75rem;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-1 p.title-description {
	padding: 25px;
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}

}

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