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


/* Arizona Flooring Brokers — Reviews */
.afbReviews-wrap { padding: 100px 200px 100px 200px;
background: linear-gradient(to left, rgb(253 253 253 / 0%) 20%, rgba(27, 27, 27, 0)), url(../img/section-1/010.jpg) 0 no-repeat;
    background-size: cover; background-attachment: fixed;
}
.afbReviews-head h2 {
     font-size: 45px;
    margin-bottom: 65px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 3px #000;;
}

/* Grid */
.afbReviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 992px) {
  .afbReviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .afbReviews-grid { grid-template-columns: 1fr; }
}

/* Card */
.afbReview-card {
  position: relative;
  border: 3px solid #fff;
  border-radius: 12px;
  padding: 50px 25px; color: #fff;
  background: #043361c4;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  will-change: transform;
}
.afbReview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.12);
}

/* Top row */
.afbReview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .5rem;
}
.afbReview-author {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.afbReview-stars {
  font-size: 1rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Copy & link */
.afbReview-text {
  font-size: .95rem;
  line-height: 1.5;
  margin: .25rem 0 .75rem 0;
}
.afbReview-link {
  display: inline-block;
  font-size: .9rem; color: #fff;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.afbReview-link:focus,
.afbReview-link:hover {
  outline: none;
  border-bottom-style: dotted;
}

/* CTA area */
.afbReviews-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.afbReviews-more,
.afbReviews-leave {
  font: inherit;
  padding: .65rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.afbReviews-more {
  border: 1px solid rgba(0,0,0,.15);
  background: #f7f7f7; font-weight: 600; color: #043361;
}
.afbReviews-more:hover,
.afbReviews-more:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,.08);
}
.afbReviews-leave {
  border: 1px solid transparent;
  background: #043361; font-weight: 600;
  color: #fff;
}
.afbReviews-leave:hover,
.afbReviews-leave:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
  color: #fff;
}


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

.home-faqs img {
	margin-top: 150px; border-radius: 10px; border: 5px solid #043361;
}


/* Arizona Flooring Brokers — FAQ styles
   - Uses unique, namespaced selectors only (afb*)
   - No global resets or default class names
   - Lightweight, accessible, and non-intrusive
*/

.afbFaq {
  --afb-radius: 12px;
  --afb-gap: 14px;
  --afb-border: 1px solid rgba(0,0,0,0.08);
  --afb-shadow: 0 2px 10px rgba(0,0,0,0.06);
  --afb-accent: #0f6ab4;        /* adjust to your brand */
  --afb-accent-ink: #0b4f86;    /* darker hover/focus */
  --afb-ink: #1b1b1b;
  --afb-muted: #666;
  --afb-bg: #fff;
  --afb-bg-alt: #f8fafc;
  display: grid;
  gap: var(--afb-gap);
}

.afbFaq-item {
  background: var(--afb-bg);
  border: var(--afb-border);
  border-radius: var(--afb-radius);
  box-shadow: var(--afb-shadow);
  overflow: clip;
}

/* Header button */
.afbFaq-head {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(15,106,180,0.03), rgba(15,106,180,0.03));
  border: none;
  cursor: pointer;
  font: 600 1.025rem/1.4 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--afb-ink);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  position: relative;
}

/* Chevron indicator (pure CSS) */
.afbFaq-head::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--afb-accent);
  border-bottom: 2px solid var(--afb-accent);
  transform: rotate(-45deg);
  transition: transform .2s ease, border-color .2s ease;
  justify-self: end;
}

/* Expanded state driven by aria-expanded */
.afbFaq-head[aria-expanded="true"] {
  background: var(--afb-bg);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
}

.afbFaq-head[aria-expanded="true"]::after {
  transform: rotate(45deg);
  border-color: var(--afb-accent-ink);
}

/* Hover/active/focus styles */
.afbFaq-head:hover {
  color: var(--afb-accent-ink);
  background: linear-gradient(0deg, rgba(15,106,180,0.06), rgba(15,106,180,0.06));
}

.afbFaq-head:active {
  transform: translateY(0.5px);
}

.afbFaq-head:focus-visible {
  outline: 2px solid var(--afb-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(15,106,180,0.15);
}

.afbFaq-title {
	font-weight: 600; font-size: 40px; margin-bottom: 50px; color: #043361; text-transform: uppercase; text-align: center;
}

/* Body/panel */
.afbFaq-body {
  padding: 0 18px 16px 18px;
  background: var(--afb-bg);
  animation: afb-slideDown .22s ease-out;
}

@keyframes afb-slideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Typography inside the body */
.afbFaq-body p {
  margin: 12px 0;
  color: var(--afb-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.afbFaq-body ul {
  margin: 10px 0 6px 1.2em;
  padding: 0;
  list-style: disc;
}

.afbFaq-body li {
  margin: 6px 0;
  color: var(--afb-ink);
}

.afbFaq-body a {
  color: var(--afb-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.afbFaq-body a:hover,
.afbFaq-body a:focus-visible {
  color: var(--afb-accent-ink);
  text-decoration-thickness: 2px;
}

/* Optional subtle divider when open (keeps design neat) */
.afbFaq-item .afbFaq-body {
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Compact spacing on very small screens */
@media (max-width: 480px) {
  .afbFaq-head { padding: 14px 16px; font-size: 1rem; }
  .afbFaq-body { padding: 0 16px 14px 16px; }
}

/* High-contrast mode adjustments (prefers-reduced-transparency) */
@media (prefers-contrast: more) {
  .afbFaq-head { background: var(--afb-bg-alt); }
  .afbFaq-head::after { border-color: currentColor; }
}

/* Reduced motion: disable slide animation */
@media (prefers-reduced-motion: reduce) {
  .afbFaq-body { animation: none; }
  .afbFaq-head, .afbFaq-head::after { transition: none; }
}


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

-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: rgb(255,255,255);
	border-top: 7px solid rgb(4,51,97);
}
.home-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(45,45,45);
}
.home-page-section-1 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.card {
	max-height: 100%;
	height: 100%;
	color: rgb(12,12,12);
	margin: 0 0 20px;
	border-radius: 1.5rem;
	padding: 18px 10px;
	border: 7px double rgb(4,51,97);
	box-shadow: 0px 0px 32px -10px #06060685;
	visibility: hidden;
}
.card h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.card span.sub-heading {
	font-size: 24px;
	text-align: center;
	color: rgb(12,12,12);
}
.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: #500050;
	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 .btn {
	background:transparent !important;
	color: #fff;
}
.card:hover span {
	left:12px;
}
.home-page-section-2 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.home-page-section-2 h2 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.home-page-section-2 h3 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	color: rgb(255,255,255);
}
.home-page-section-2 strong {
	font-size: 3rem;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(0,255,0);
}
.home-page-section-2 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.home-page-section-2 img {
	width: 100%;
	height: 100%;
	border-radius: 1.3rem;
}
.home-page-section-2 a.button-1 {
	padding: 5px;
	background: rgb(255,255,255);
	border: 5px double rgb(4,51,97);
	border-radius: 0.8rem;
	font-size: 24px;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(12,12,12);
}
.about-page-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.about-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.about-page-section-1 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.about-page-section-1 a.button-1 {
	padding: 5px;
	background: rgb(255,255,255);
	border: 5px double rgb(4,51,97);
	border-radius: 0.8rem;
	font-size: 24px;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(12,12,12);
}
.service-page-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.service-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h2 {
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h3 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h4 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	text-transforms: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.service-page-section-1 img {
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
}
.service-page-section-2 {
	padding: 75px 0 75px 0;
	background: rgb(226,226,226);
}
.service-page-section-2 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.service-page-section-2 h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: right;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.service-page-section-2 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.service-page-section-2 img {
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
}
.service-page-section-3 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
}
.service-page-section-3 li p span{
	font-weight: 700; text-decoration: underline; 
}
.service-page-section-3 .header-section h1 {
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 .header-section h4 {
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h2 {
	font-size: 3rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h3 {
	font-size: 1.75rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h4 {
	font-size: 1.75rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.service-page-section-3 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.service-page-section-4 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgba(255,255,255);
	border-bottom: 10px double rgba(255,255,255);
}
.service-page-section-4 h1 {
	font-size: 3rem;
	font-weight: 700;
	color: rgb(255,255,255);
	text-transform: uppercase;
}
.service-page-section-4 h2 {
	font-size: 3rem;
	font-weight: 700;
	color: rgb(255,255,255);
	text-transform: uppercase;
}
.service-page-section-4 p {
	font-size: 18px;
	color: rgb(255,255,255);
	text-align: justify;
}
.service-page-section-4 strong {
	font-size: 24px;
}

/*Products Page START*/
.products-page{
	
}
.parallax1{
	padding: 100px 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/product-background.png');

	/*background-image: url('/img/product-background.png');*/
min-height: auto;

    background-attachment: fixed;
    background-position: 50% 140%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}
/*.parallax1 .box h1{*/
/*	color: white; */
/*	font-weight: 600;*/
/*	font-size: 2rem;*/
/*	text-transform: uppercase;*/
/*	*/
/*}*/
.products-page{
    padding: 65px 0 15px 0;
    /*background: rgb(255, 255, 255);*/
	background-image: none;

}
.products-page .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);
}
.products-page h1{
	color: white; 
	font-weight: 600;
	font-size: 2rem;
	text-transform: uppercase;
	
}
.products-page p{
	color: white; ;
	font-size: 1rem;
	text-transform: uppercase;
	
}
.products-page ul {
    list-style: none;
    padding: 0;
}
.products-page-info  {
	padding: 15px 0; 
}
.products-page-info h2 {
	color: rgb(4,51,97);
	font-weight: 600;
	font-size: 2rem;
	text-transform: uppercase;
	
	
}
.products-page-info .btn {
	background: rgb(4,51,97);
	color: white; 
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	
	
}
.products-page-info  img{
	border-radius: 15px; 
}
.products-page-info ul {
    list-style: none;
    padding: 0;
}

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

/*.products-page-info2 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info3 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info4 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info5 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info6 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info7 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info8 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info9 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/* Disable scrolling */
.modal-open {
    overflow: hidden;
}
 .m-box1 {
	padding: 15px; background: #f5f5f5; height: auto;
}







/*Products Page END*/



.gallery-header-section {
	padding: 175px 0 75px 0;
	background: rgb(255,255,255);
}
.gallery-header-section h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.gallery-header-section p {
	font-size: 18px;
	font-weight: 600;
	text-align: justify;
	color: rgb(12,12,12);
}
.service-areas-1 {
	padding: 50px 0 50px 0;
	background: rgb(255,255,255);
	border-top: 7px solid rgb(4,51,97);
	border-bottom: 7px solid rgb(4,51,97);
}
.service-areas-1 h1 {
	font-size: 3rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-transform: uppercase;
}
.service-areas-1 h2 {
	font-size: 3rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-transform: uppercase;
	
}
.service-areas-1 h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(12,12,12);
}
.service-areas-1 p {
	font-size: 18px;
	color: rgb(12,12,12);
}
.service-areas-1 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.service-areas-2 {
	padding: 50px 0 50px 0;
	background: rgb(255,255,255);
}
.service-areas-2 h1 {
	font-size: 3rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-align: right;
	text-transform: uppercase;
}
.service-areas-2 h2 {
	font-size: 3rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-transform: uppercase;
	
}
.service-areas-2 h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(12,12,12);
}
.service-areas-2 p {
	font-size: 18px;
	color: rgb(12,12,12);
	text-align: right;
}
.service-areas-2 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.phoenix-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(255,255,255);
}
.phoenix-section-1 h1 {
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: rgb(12,12,12);
}
.phoenix-section-1 h2 {
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: rgb(12,12,12);
}
.phoenix-section-1 h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: rgb(12,12,12);
}
.phoenix-section-1 h4 {
	font-size: 1.25rem;
	font-weight: 600;
	color: rgb(12,12,12);
}
.phoenix-section-1 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.phoenix-section-1 img {
	width: 100%;
	height: 100%;
}
.contact-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(255,255,255);
}
.contact-page-section-1 {
	padding: 175px 0 75px 0;
	background: rgb(255,255,255);
}
.contact-section-1 h2{
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(45,45,45);
}
.contact-section-1 h1, .contact-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(45,45,45);
}
.contact-section-1 .content-section, .contact-page-section-1 .content-section {
	padding: 24px;
	background: rgb(255,255,255);
	border: 7px double rgb(4,51,97);
	border-top-left-radius: 1.5rem;
	border-bottom-left-radius: 1.5rem;
}
.contact-section-1 .content-section h2, .contact-page-section-1 .content-section h2 {
	font-size: 2rem;
	font-weight: 600;
	color: rgb(45,45,45);
}
.contact-section-1 .content-section p, .contact-page-section-1 .content-section p {
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.contact-section-1 .form-section, .contact-page-section-1 .form-section {
	padding: 24px;
	background: rgb(4,51,97);
	border-top-right-radius: 1.5rem;
	border-bottom-right-radius: 1.5rem;
}
.contact-section-1 .form-section h3, .contact-page-section-1 .form-section h3 {
	font-size: 2rem;
	font-weight: 600;
	color: rgb(255,255,255);
}
.contact-section-1 .form-section p, .contact-page-section-1 .form-section p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}


/**** Process Page ****/ 
.process {
	padding: 100px 0 100px 0;
	background: rgb(4,51,97);
}
.process .process-card{
	
    max-height: 100%;
    height: 100%;
    color: #fff;
    margin: 0 0 0px;
    border-radius: 5px;
    padding: 7px;
    background: rgb(255,255,255);
    visibility: visible;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
	
}
.process h1 {
	font-family: 'font';
	font-size: 35px;
	text-align: center;
	font-weight: 900;
	color: rgb(4,51,97);
}
.process h2 {
	font-family: 'font';
	font-size: 25px;
	text-align: center;
	font-weight: 900;
	padding-bottom: 30px;
	color: rgb(110,110,110);
}
.process h3.card-title {
	color: rgb(4,51,97);
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom:  10px;
    text-align: center;

}
.process h5 {
	font-family: 'font';
	font-size: 25px;
	text-align: center;
	font-weight: 900;
	padding-bottom: 30px;
	color: rgb(110,110,110);
}
.process p {
	font-size: 1rem;
	text-align: center;
	color: black !important;
}
.process li {
	font-size: 19px;
	color: rgb(110,110,110);
}
.process strong {
	color: rgb(4,51,97);
	font-family: 'font';
}

.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,.mobile-menu .dropdown-menu-mobile-3 {
	  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 , .dropdown-menu-animate-3{
	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, .mobile-menu .dropdown-menu-mobile-3 a {
	color:#545454;
	font-weight:600 !important;
	font-size: 1em;
	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;
}


/*FAQ Page*/
.faq {
	padding: 150px 0 75px 0;
	background: white;
}
.faq h1 {
	font-size: 2.7rem;
	font-weight: 800;
	padding-bottom: 15px;
	color: rgb(4,51,97);
	text-align: center;
}
.faq h2 {
	font-size: 1.3rem;
	font-weight: 800;
	padding-bottom: 5px;
	color: rgb(4,51,97);
	text-align: center;
}
.faq .box{
  width: auto;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.faq span{
  transition: 200ms;
  font-weight: 600;
  font-size: 1.1rem;
}
.faq .bg-dark {
  background-color: rgb(4,51,97)!important;
}
.faq .bg-dark:hover {
  background-color: rgb(4,51,97)!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: rgb(255,255,255);
	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*/




.testimonials{
	
	
	padding: 150px 0 150px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}

.testimonials {

}
.testimonials h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.testimonials p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.testimonials a.button-1 {
	padding: 5px;
	background: rgb(255,255,255);
	border: 5px double rgb(4,51,97);
	border-radius: 0.8rem;
	font-size: 24px;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(12,12,12);
}



/*******************  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;
	display: none;
}

/*******************  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;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 8px solid rgba(210,180,140,1);
}

/* ========================================================== */
/* 			            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: #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; */
	border-radius: 0;
}
#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;
	border-radius: 0;
}
.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: 50px 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: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	/* padding-right: 40px; */
}

.overlay {
	height: 100%;
	width: 100%;
	background: #ffffffbf;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 19px;
	text-transform: uppercase;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #043361;
    background-clip: padding-box;
    border: 6px double rgb(237,237,237);
    border-radius: .25rem;
}

.dropdown-menu a:hover {
	background: rgb(4,51,97);
	color: rgba(255, 255, 255) !important;
}

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

.top-header-animate {
	background: #ffffff00;
}
.top-header-animate .dropdown-toggle {
	color:#0a0a0a;
	font-size: 16px;
}
.top-header-animate .navbar-brand {
	font-size: 2.5em;
}
.top-header-animate a,
.top-header-animate p,
.top-header-animate i,
.top-header-animate {
	color:rgb(195,195,195);
	
}
.header-animate {
	padding: 54px 0 0 !important;
}
.header-animate a {
	color:rgb(255, 255, 255) !important;
	font-size: 1.1rem;
}
.header-animate a:hover {
	color:rgb(195, 195, 195) !important;
}
.header-animate a:before {
	background:#222 !important;
}
.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 .dropdown-menu {
	background:whitesmoke;
	border-radius: 0;
}
.top-header .dropdown-menu a {
	color:#222;
	padding:3px 20px !important;
}

.top-header {
	position: fixed;
	width:100%;
	z-index:1;
	padding: 0 0;
	z-index: 3;
	background: rgb(255, 255, 255);
	border-bottom: 5px solid rgb(4,51,97);
	-webkit-transition: all .30s ease;
	-moz-transition: all .30s ease;
	-o-transition: all .30s ease;
	transition: all .30s ease;
}
.top-header .google a {
	padding: 5px;
	background: rgb(4,51,97);
	border-radius: 0.8rem;
	color: rgb(255,255,255);
	font-size: 1.5rem;
	text-transform: capitalize;
}
.top-header div[class*='col-']:first-child {
	display:flex;
	justify-content: flex-end;
	align-items:center;
}
.top-header div[class*='col-']:nth-child(2) {
	display:flex;
	justify-content:center;
	align-items:center;
}
.top-header div[class*='col-']:nth-child(3) {
	display:flex;
	justify-content:center;
	align-items:center;
}
.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,
.top-header p {
	color:rgb(4,51,97);
	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;
}
.top-header .dropdown-toggle {
	background: #21212100;
	padding: 6px 25px;
	outline: none !important;
	border-color: #f3f3f3b5;
}
.top-header .dropdown-toggle:hover {
	background-color: white !important;
	color: #000 !important;
}
.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;
}

.navbar-scroll {
	padding:54px 0 0;
	position: fixed;
	width: 100%;
	z-index: 2;
	-webkit-transition: all .30s ease;
	-moz-transition: all .30s ease;
	-o-transition: all .30s ease;
	transition: all .30s ease;
}
.navbar-scroll .container {
	background: rgb(4,51,97);
	border-bottom-left-radius: 1.5rem;
	border-bottom-right-radius: 1.5rem;
    max-width: fit-content;
	
	
}
#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: 400;
	font-size: 1.1rem;
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	font-family: 'Montserrat', sans-serif;
	/* cursor: pointer; */
	overflow: hidden;
}
.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(255, 255, 255);
}

.navbar-light .navbar-nav li a {
	position:relative;
}

.navbar-collapse {
	height:100%;
}

.mobile-top-header {
	display:none !important;
}

#logo-pic {
    width: 73%;
}

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

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

.projects .about-header-section h1 {
	display:inline-flex;
	justify-content:center;
	align-items:center;
}
.projects .about-header-section .header-logout-btn {
	font-size:22px;
	display:block;
	margin-left:20px;
	color:#ca3535;
}

#delete-msg {
	position:relative;
	text-align:center;
	margin:0 0 2em;
}
#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: .;
}


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

.gallery-section-divider {
	overflow:hidden;
	position: relative;
	padding: 20px 20px 80px;
}
.gallery-section-divider h1 {
	position: relative;
	padding:40px 0 20px;
	/* display: flex; */
	/* flex-direction: row; */
	/* justify-content: space-around; */
}
.gallery-section-divider h2 {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: rgb(4,51,97);
}

.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: flex;
  justify-content: center;
  align-items: center;
  float: left;
  position:relative;
  overflow:hidden;
  margin: 0 10px 20px;
}

#portfolio li a {
  transform:scale(1,1);
  display:block;
  width:100%;
  height: 295px;
  width: 358px;
  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 {
	transform:scale(1.1,1.1) !important;
}
.project-upload #portfolio li:before {
	position:absolute;
	content:'Delete Image';
	/* width:100%; */
	/* height:50px; */
	display:inline-block;
	/* top:0; */
	color: #fff;
	z-index:3;
	font-size: 2em;
}
#portfolio li a img {
	display:block;
   position: absolute;
   top: -9999px;
   bottom: -9999px;
   left: -9999px;
   right: -9999px;
   margin: auto;
   width: 100%;
   height: 100%;
   transform:scale(1,1);
}

.project-upload #portfolio li:hover .block-overlay {
	background-color:#000000cc;
}
#portfolio li:hover .block-overlay {
	background-color:#000000cc;
}
#portfolio li:hover input {
	left: 0;
}

#portfolio .block-overlay {
	background: #13131333;
	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 {
  /* start state */
  /* animate in */
  /* animate out */
}
.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; }

/* ========================================================== */
/* 			           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: rgb(4,51,97);
	color: rgba(255,255,255,1);
	font-size: 18px;
	font-weight: 400;
}
.footer-section a {
	color:rgba(255,255,255,1);
}
.footer-section .service-cities p {
	margin:0 0 3px;
}
.service-cities {
	margin-bottom:1em;
}
.service-cities h4 {
	font-size:22px;
	font-weight: 600;
	text-transform: uppercase;
}
.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 #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;
}



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

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

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



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

.home-page-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(255,255,255);
	border-top: 7px solid rgb(4,51,97);
}
.home-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(45,45,45);
}
.home-page-section-1 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.card {
	max-height: 100%;
	height: 100%;
	color: rgb(12,12,12);
	margin: 0 0 20px;
	border-radius: 1.5rem;
	padding: 18px 10px;
	border: 7px double rgb(4,51,97);
	box-shadow: 0px 0px 32px -10px #06060685;
	visibility: hidden;
}
.card h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.card span.sub-heading {
	font-size: 24px;
	text-align: center;
	color: rgb(12,12,12);
}
.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: #500050;
	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 .btn {
	background:transparent !important;
	color: #fff;
}
.card:hover span {
	left:12px;
}
.home-page-section-2 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.home-page-section-2 h2 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.home-page-section-2 h3 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	color: rgb(255,255,255);
}
.home-page-section-2 strong {
	font-size: 3rem;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(0,255,0);
}
.home-page-section-2 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.home-page-section-2 img {
	width: 100%;
	height: 100%;
	border-radius: 1.3rem;
}
.home-page-section-2 a.button-1 {
	padding: 5px;
	background: rgb(255,255,255);
	border: 5px double rgb(4,51,97);
	border-radius: 0.8rem;
	font-size: 24px;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(12,12,12);
}
.about-page-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.about-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.about-page-section-1 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.about-page-section-1 a.button-1 {
	padding: 5px;
	background: rgb(255,255,255);
	border: 5px double rgb(4,51,97);
	border-radius: 0.8rem;
	font-size: 24px;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(12,12,12);
}
.service-page-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.service-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h2 {
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h3 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h4 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	text-transforms: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.service-page-section-1 img {
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
}
.service-page-section-2 {
	padding: 75px 0 75px 0;
	background: rgb(226,226,226);
}
.service-page-section-2 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.service-page-section-2 h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: right;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.service-page-section-2 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.service-page-section-2 img {
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
}
.service-page-section-3 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
}
.service-page-section-3 .header-section h1 {
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 .header-section h4 {
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h4 {
	font-size: 1.75rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}
.service-page-section-3 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.service-page-section-4 {
	padding: 75px 0 75px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgba(255,255,255);
	border-bottom: 10px double rgba(255,255,255);
}
.service-page-section-4 h1 {
	font-size: 3rem;
	font-weight: 700;
	color: rgb(255,255,255);
	text-transform: uppercase;
}
.service-page-section-4 p {
	font-size: 18px;
	color: rgb(255,255,255);
	text-align: justify;
}
.service-page-section-4 strong {
	font-size: 24px;
}

/*Products Page START*/
.products-page{
	
}
.parallax1{
	padding: 100px 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/product-background.png');

	/*background-image: url('/img/product-background.png');*/
min-height: auto;

    background-attachment: fixed;
    background-position: 50% 140%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}
/*.parallax1 .box h1{*/
/*	color: white; */
/*	font-weight: 600;*/
/*	font-size: 2rem;*/
/*	text-transform: uppercase;*/
/*	*/
/*}*/
.products-page{
    padding: 65px 0 15px 0;
    /*background: rgb(255, 255, 255);*/
	background-image: none;

}
.products-page .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);
}
.products-page h1{
	color: white; 
	font-weight: 600;
	font-size: 2rem;
	text-transform: uppercase;
	
}
.products-page p{
	color: white; ;
	font-size: 1rem;
	text-transform: uppercase;
	
}
.products-page ul {
    list-style: none;
    padding: 0;
}
.products-page-info  {
	padding: 15px 0; 
}
.products-page-info h2 {
	color: rgb(4,51,97);
	font-weight: 600;
	font-size: 2rem;
	text-transform: uppercase;
	
	
}
.products-page-info .btn {
	background: rgb(4,51,97);
	color: white; 
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	
	
}
.products-page-info  img{
	border-radius: 15px; 
}
.products-page-info ul {
    list-style: none;
    padding: 0;
}

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

/*.products-page-info2 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info3 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info4 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info5 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info6 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info7 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info8 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/**/
/*.products-page-info9 .modal-dialog {*/
/*	max-width: 1200px;*/
/*	top: 10px;*/
/*	margin: 1.75rem auto;*/
/*}*/
/* Disable scrolling */
.modal-open {
    overflow: hidden;
}
 .m-box1 {
	padding: 15px; background: #f5f5f5; height: auto;
}







/*Products Page END*/



.gallery-header-section {
	padding: 175px 0 75px 0;
	background: rgb(255,255,255);
}
.gallery-header-section h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.gallery-header-section p {
	font-size: 18px;
	font-weight: 600;
	text-align: justify;
	color: rgb(12,12,12);
}
.service-areas-1 {
	padding: 50px 0 50px 0;
	background: rgb(255,255,255);
	border-top: 7px solid rgb(4,51,97);
	border-bottom: 7px solid rgb(4,51,97);
}
.service-areas-1 h1 {
	font-size: 3rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-transform: uppercase;
}
.service-areas-1 h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(12,12,12);
}
.service-areas-1 p {
	font-size: 18px;
	color: rgb(12,12,12);
}
.service-areas-1 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.service-areas-2 {
	padding: 50px 0 50px 0;
	background: rgb(255,255,255);
}
.service-areas-2 h1 {
	font-size: 3rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-align: right;
	text-transform: uppercase;
}
.service-areas-2 h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-align: right;
}
.service-areas-2 p {
	font-size: 18px;
	color: rgb(12,12,12);
	text-align: right;
}
.service-areas-2 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.phoenix-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(255,255,255);
}
.phoenix-section-1 h2 {
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: rgb(12,12,12);
}
.phoenix-section-1 h4 {
	font-size: 1.25rem;
	font-weight: 600;
	color: rgb(12,12,12);
}
.phoenix-section-1 p {
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.phoenix-section-1 img {
	width: 100%;
	height: 100%;
}
.contact-section-1 {
	padding: 75px 0 75px 0;
	background: rgb(255,255,255);
}
.contact-page-section-1 {
	padding: 175px 0 75px 0;
	background: rgb(255,255,255);
}
.contact-section-1 h1, .contact-page-section-1 h1 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(45,45,45);
}
.contact-section-1 .content-section, .contact-page-section-1 .content-section {
	padding: 24px;
	background: rgb(255,255,255);
	border: 7px double rgb(4,51,97);
	border-top-left-radius: 1.5rem;
	border-bottom-left-radius: 1.5rem;
}
.contact-section-1 .content-section h2, .contact-page-section-1 .content-section h2 {
	font-size: 2rem;
	font-weight: 600;
	color: rgb(45,45,45);
}
.contact-section-1 .content-section p, .contact-page-section-1 .content-section p {
	font-size: 18px;
	text-align: justify;
	color: rgb(12,12,12);
}
.contact-section-1 .form-section, .contact-page-section-1 .form-section {
	padding: 24px;
	background: rgb(4,51,97);
	border-top-right-radius: 1.5rem;
	border-bottom-right-radius: 1.5rem;
}
.contact-section-1 .form-section h3, .contact-page-section-1 .form-section h3 {
	font-size: 2rem;
	font-weight: 600;
	color: rgb(255,255,255);
}
.contact-section-1 .form-section p, .contact-page-section-1 .form-section p {
	font-size: 18px;
	text-align: justify;
	color: rgb(255,255,255);
}

.navbar-inverse .navbar-inner {
	display:none;
}

.mobile-menu {
	display:none;
}


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

.top-header-animate {
	background: #ffffff00;
}
.top-header-animate .dropdown-toggle {
	color:#0a0a0a;
	font-size: 16px;
}
.top-header-animate .navbar-brand {
	font-size: 2.5em;
}
.top-header-animate a,
.top-header-animate p,
.top-header-animate i,
.top-header-animate {
	color:rgb(195,195,195);
	
}
.header-animate {
	padding: 100px 0 0 !important;
}
.header-animate a {
	color:rgb(255, 255, 255) !important;
	font-size: 17px !important;
}
.header-animate a:hover {
	color:rgb(195, 195, 195) !important;
}
.header-animate a:before {
	background:#222 !important;
}
.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 .dropdown-menu {
	background:whitesmoke;
	border-radius: 0;
}
.top-header .dropdown-menu a {
	color:#222;
	padding:3px 20px !important;
}

.top-header {
	position: fixed;
	width:100%;
	z-index:1;
	padding: 0 0;
	z-index: 3;
	background: rgb(255, 255, 255);
	border-bottom: 5px solid rgb(4,51,97);
	-webkit-transition: all .30s ease;
	-moz-transition: all .30s ease;
	-o-transition: all .30s ease;
	transition: all .30s ease;
}
.top-header .google a {
	padding: 5px;
	background: rgb(4,51,97);
	border-radius: 0.8rem;
	color: rgb(255,255,255);
	font-size: 0.6rem;
	text-transform: capitalize;
}
.top-header div[class*='col-']:first-child {
	display:flex;
	justify-content: flex-end;
	align-items:center;
}
.top-header div[class*='col-']:nth-child(2) {
	display:flex;
	justify-content:center;
	align-items:center;
}
.top-header div[class*='col-']:nth-child(3) {
	display:flex;
	justify-content:center;
	align-items:center;
}
.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,
.top-header p {
	color:rgb(4,51,97);
	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;
}
.top-header .dropdown-toggle {
	background: #21212100;
	padding: 6px 25px;
	outline: none !important;
	border-color: #f3f3f3b5;
}
.top-header .dropdown-toggle:hover {
	background-color: white !important;
	color: #000 !important;
}
.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;
}

.navbar-scroll {
	padding:100px 0 0;
	position: fixed;
	width: 100%;
	z-index: 2;
	-webkit-transition: all .30s ease;
	-moz-transition: all .30s ease;
	-o-transition: all .30s ease;
	transition: all .30s ease;
}
.navbar-scroll .container {
    background: rgb(4,51,97);
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    max-width: max-content;
}
#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 8px;
	padding: 6px 0px;
	font-weight: 400;
	font-size: 0.8rem;
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	font-family: 'Montserrat', sans-serif;
	/* cursor: pointer; */
	overflow: hidden;
}
.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(255, 255, 255);
}

.navbar-light .navbar-nav li a {
	position:relative;
}

.navbar-collapse {
	height:100%;
}

.mobile-top-header {
	display:none !important;
}

#logo-pic {
    width: 73%;
}

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




}








/*@media screen and (max-width: 768px) {*/
@media screen and (max-width: 991px) {

.home-page-section-1 {
	padding: 30px 0 30px 0;
	background: rgb(255,255,255);
	border-top: 7px solid rgb(4,51,97);
}
.home-page-section-1 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(45,45,45);
}
.home-page-section-1 p {
	font-size: 14px;
	text-align: justify;
	color: rgb(12,12,12);
}
.card {
	max-height: 100%;
	height: 100%;
	color: rgb(12,12,12);
	margin: 0 0 20px;
	border-radius: 1.5rem;
	padding: 18px 10px;
	border: 7px double rgb(4,51,97);
	box-shadow: 0px 0px 32px -10px #06060685;
	visibility: hidden;
}
.card h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.card span.sub-heading {
	font-size: 24px;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-2 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.home-page-section-2 h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.home-page-section-2 h3 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	color: rgb(255,255,255);
}
.home-page-section-2 p {
	font-size: 14px;
	text-align: justify;
	color: rgb(255,255,255);
}
.home-page-section-2 img {
	width: 100%;
	height: 100%;
	border-radius: 1.3rem;
}
.home-page-section-2 a.button-1 {
	padding: 5px;
	background: rgb(255,255,255);
	border: 5px double rgb(4,51,97);
	border-radius: 0.8rem;
	font-size: 24px;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(12,12,12);
}
.about-page-section-1 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.about-page-section-1 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.about-page-section-1 p {
	font-size: 14px;
	text-align: justify;
	color: rgb(255,255,255);
}
.about-page-section-1 a.button-1 {
	padding: 5px;
	background: rgb(255,255,255);
	border: 5px double rgb(4,51,97);
	border-radius: 0.8rem;
	font-size: 24px;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(12,12,12);
}
.service-page-section-1 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
	text-align:center;
	
}
.service-page-section-1 ul{
	padding: 0;
	list-style-type: none; 
}

.service-page-section-1 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h2 {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h3 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h4 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	text-transforms: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 p {
	font-size: 14px;
	text-align: justify;
	color: rgb(255,255,255);
}
.service-page-section-1 img {
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
}
.service-page-section-2 {
	padding: 30px 0 30px 0;
	background: rgb(226,226,226);	text-align:center;

}
.service-page-section-2 ul{
	padding: 0;
	list-style-type: none; 

}
.service-page-section-2 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.service-page-section-2 h2 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: right;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.service-page-section-2 p {
	font-size: 14px;
	text-align: justify;
	color: rgb(12,12,12);
}
.service-page-section-2 img {
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
}
.service-page-section-3 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
	text-align:center;
}
.service-page-section-3 ul{
	padding: 0;
	list-style-type: none; 
	
}
.service-page-section-3 .header-section h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 .header-section h4 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h4 {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 p {
	font-size: 14px;
	text-align: justify;
	color: rgb(255,255,255);
}
.service-page-section-3 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.service-page-section-4 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgba(255,255,255);
	border-bottom: 10px double rgba(255,255,255);
}
.service-page-section-4 h1 {
	font-size: 2rem;
	font-weight: 700;
	color: rgb(255,255,255);
	text-transform: uppercase;
}
.service-page-section-4 p {
	font-size: 14px;
	color: rgb(255,255,255);
	text-align: justify;
}
.service-page-section-4 strong {
	font-size: 24px;
}
.gallery-header-section {
	padding: 120px 0 30px 0;
	background: rgb(255,255,255);
}
.gallery-header-section h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.gallery-header-section p {
	font-size: 14px;
	font-weight: 600;
	text-align: justify;
	color: rgb(12,12,12);
}
.service-areas-1 {
	padding: 50px 0 50px 0;
	background: rgb(255,255,255);
	border-top: 7px solid rgb(4,51,97);
	border-bottom: 7px solid rgb(4,51,97);
}
.service-areas-1 h1 {
	font-size: 2rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-transform: uppercase;
}
.service-areas-1 h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(12,12,12);
}
.service-areas-1 p {
	font-size: 14px;
	color: rgb(12,12,12);
}
.service-areas-1 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.service-areas-2 {
	padding: 30px 0 30px 0;
	background: rgb(255,255,255);
}
.service-areas-2 h1 {
	font-size: 2rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-align: right;
	text-transform: uppercase;
}
.service-areas-2 h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-align: right;
}
.service-areas-2 p {
	font-size: 14px;
	color: rgb(12,12,12);
	text-align: right;
}
.service-areas-2 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.contact-section-1 {
	padding: 30px 0 30px 0;
	background: rgb(255,255,255);
}
.contact-page-section-1 {
	padding: 120px 0 75px 0;
	background: rgb(255,255,255);
}
.contact-section-1 h1, .contact-page-section-1 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(45,45,45);
}
.contact-section-1 .content-section, .contact-page-section-1 .content-section {
	padding: 24px;
	background: rgb(255,255,255);
	border: 7px double rgb(4,51,97);
	border-radius: 1.5rem;
}
.contact-section-1 .content-section h2, .contact-page-section-1 .content-section h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	color: rgb(45,45,45);
}
.contact-section-1 .content-section p, .contact-page-section-1 .content-section p {
	font-size: 14px;
	text-align: justify;
	color: rgb(12,12,12);
}
.contact-section-1 .form-section, .contact-page-section-1 .form-section {
	padding: 24px;
	background: rgb(4,51,97);
	border-radius: 1.5rem;
}
.contact-section-1 .form-section h3, .contact-page-section-1 .form-section h3 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	color: rgb(255,255,255);
}
.contact-section-1 .form-section p, .contact-page-section-1 .form-section p {
	font-size: 14px;
	text-align: justify;
	color: rgb(255,255,255);
}
.bottom-footer div[class*='col-']:nth-child(3) {
	justify-content:center;
}	
.top-header a, .top-header p, .top-header i {
    color: rgb(12,12,12);
}
.top-header-animate a, .top-header-animate p, .top-header-animate i {
    color: rgb(12,12,12);
}
.top-header {
	display:none;
}
.header-contact_info {
    font-size: 1.5em;
}
.navbar-scroll {
	display:none;
}
.header-contact_info a {
    color: #333;
    margin: 0;
}
.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;
}
.mobile-top-header {
	display:block !important;
	padding: 0 30px 0;
	background: white;
	z-index: 4;
	overflow:visible;
}
.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: rgb(4,51,97);
    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: 1.7rem;
    color: rgb(255,255,255) !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;
}

}

@media screen and (max-width: 690px) {
	
.home-page-section-1 {
	padding: 30px 0 30px 0;
	background: rgb(255,255,255);
	border-top: 7px solid rgb(4,51,97);
}
.home-page-section-1 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(45,45,45);
}
.home-page-section-1 p {
	font-size: 14px;
	text-align: center;
	color: rgb(12,12,12);
}
.card {
	max-height: 100%;
	height: 100%;
	color: rgb(12,12,12);
	margin: 0 0 20px;
	border-radius: 1.5rem;
	padding: 18px 10px;
	border: 7px double rgb(4,51,97);
	box-shadow: 0px 0px 32px -10px #06060685;
	visibility: hidden;
}
.card h2 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.card h4 {
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.card span.sub-heading {
	font-size: 24px;
	text-align: center;
	color: rgb(12,12,12);
}
.home-page-section-2 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.home-page-section-2 h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.home-page-section-2 h3 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	color: rgb(255,255,255);
}
.home-page-section-2 p {
	font-size: 14px;
	text-align: center;
	color: rgb(255,255,255);
}
.home-page-section-2 img {
	width: 100%;
	height: 100%;
	border-radius: 1.3rem;
}
.home-page-section-2 a.button-1 {
	padding: 5px;
	background: rgb(255,255,255);
	border: 5px double rgb(4,51,97);
	border-radius: 0.8rem;
	font-size: 24px;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(12,12,12);
}
.about-page-section-1 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.about-page-section-1 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.about-page-section-1 p {
	font-size: 14px;
	text-align: center;
	color: rgb(255,255,255);
}
.about-page-section-1 a.button-1 {
	padding: 5px;
	background: rgb(255,255,255);
	border: 5px double rgb(4,51,97);
	border-radius: 0.8rem;
	font-size: 24px;
	text-align: center;
	text-shadow: 1px 1px 1px rgb(255,255,255);
	color: rgb(12,12,12);
}
.service-page-section-1 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgb(255,255,255);
	border-bottom: 10px double rgb(255,255,255);
}
.service-page-section-1 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h2 {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h3 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 h4 {
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
	text-transforms: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-1 p {
	font-size: 14px;
	text-align: center;
	color: rgb(255,255,255);
}
.service-page-section-1 img {
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
}
.service-page-section-2 {
	padding: 30px 0 30px 0;
	background: rgb(226,226,226);
}
.service-page-section-2 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.service-page-section-2 h2 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: right;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.service-page-section-2 p {
	font-size: 14px;
	text-align: justify;
	color: rgb(12,12,12);
}
.service-page-section-2 img {
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
}
.service-page-section-3 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
}
.service-page-section-3 .header-section h1 {
	font-size: 1.7rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 .header-section h4 {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h4 {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255,255,255);
}
.service-page-section-3 h2 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(255,255,255);
}
.service-page-section-3 p {
	font-size: 14px;
	text-align: center;
	color: rgb(255,255,255);
}
.service-page-section-3 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.service-page-section-4 {
	padding: 30px 0 30px 0;
	background: rgb(4,51,97);
	border-top: 10px double rgba(255,255,255);
	border-bottom: 10px double rgba(255,255,255);
}
.service-page-section-4 h1 {
	font-size: 2rem;
	font-weight: 700;
	color: rgb(255,255,255);
	text-transform: uppercase;
}
.service-page-section-4 p {
	font-size: 14px;
	color: rgb(255,255,255);
	text-align: center;
}
.service-page-section-4 strong {
	font-size: 24px;
}
.gallery-header-section {
	padding: 120px 0 30px 0;
	background: rgb(255,255,255);
}
.gallery-header-section h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(4,51,97);
}
.gallery-header-section p {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	color: rgb(12,12,12);
}
.service-areas-1 {
	padding: 50px 0 50px 0;
	background: rgb(255,255,255);
	border-top: 7px solid rgb(4,51,97);
	border-bottom: 7px solid rgb(4,51,97);
}
.service-areas-1 h1 {
	font-size: 2rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-transform: uppercase;
}
.service-areas-1 h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(12,12,12);
}
.service-areas-1 p {
	font-size: 14px;
	color: rgb(12,12,12);
}
.service-areas-1 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.service-areas-2 {
	padding: 30px 0 30px 0;
	background: rgb(255,255,255);
}
.service-areas-2 h1 {
	font-size: 2rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-align: right;
	text-transform: uppercase;
}
.service-areas-2 h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(12,12,12);
	text-align: right;
}
.service-areas-2 p {
	font-size: 14px;
	color: rgb(12,12,12);
	text-align: right;
}
.service-areas-2 iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.8rem;
}
.contact-section-1 {
	padding: 30px 0 30px 0;
	background: rgb(255,255,255);
}
.contact-page-section-1 {
	padding: 120px 0 75px 0;
	background: rgb(255,255,255);
}
.contact-section-1 h1, .contact-page-section-1 h1 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: rgb(45,45,45);
}
.contact-section-1 .content-section, .contact-page-section-1 .content-section {
	padding: 24px;
	background: rgb(255,255,255);
	border: 7px double rgb(4,51,97);
	border-radius: 1.5rem;
}
.contact-section-1 .content-section h2, .contact-page-section-1 .content-section h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	color: rgb(45,45,45);
}
.contact-section-1 .content-section p, .contact-page-section-1 .content-section p {
	font-size: 14px;
	text-align: center;
	color: rgb(12,12,12);
}
.contact-section-1 .form-section, .contact-page-section-1 .form-section {
	padding: 24px;
	background: rgb(4,51,97);
	border-radius: 1.5rem;
}
.contact-section-1 .form-section h3, .contact-page-section-1 .form-section h3 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	color: rgb(255,255,255);
}
.contact-section-1 .form-section p, .contact-page-section-1 .form-section p {
	font-size: 14px;
	text-align: center;
	color: rgb(255,255,255);
}
.bottom-footer div[class*='col-']:nth-child(3) {
	justify-content:center;
}	
.top-header a, .top-header p, .top-header i {
    color: rgb(12,12,12);
}
.top-header-animate a, .top-header-animate p, .top-header-animate i {
    color: rgb(12,12,12);
}
.top-header {
	display:none;
}
.header-contact_info {
    font-size: 1.5em;
}
.navbar-scroll {
	display:none;
}
.header-contact_info a {
    color: #333;
    margin: 0;
}
.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;
}
.mobile-top-header {
	display:block !important;
	padding: 0 30px 0;
	background: white;
	z-index: 4;
	overflow:visible;
}
.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: rgb(4,51,97);
    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: 1.7rem;
    color: rgb(255,255,255) !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;
}
	
	
	
}
@media screen and (max-width: 375px) {}