/* ========================================== */
/* === CSS Table of Contents ================ */
/* === 2023 © Guardian Sages ================ */ 
/* ========================================== */

/* ========================================== */
/* === 1. Top Header Section ================ */
/* === 2. Navigation Section ================ */
/* === 3. Website Pages Section ============= */
/* ===    a. Home Section =================== */
/* ===    b. About Section ================== */
/* ===    c. Services Section =============== */
/* ===    d. Gallery Section ================ */
/* ===    e. Areas We Service Section ======= */
/* ===    f. Contact Section ================ */
/* ===    g. Sections On Every Page ========= */
/* === 4. Misc. Section ===================== */
/* ===    a. Referrals Owl Carousel ========= */
/* ===    b. Default Classes ================ */
/* ===    c. Gallery Function Section ======= */
/* ===    d. Reviews Function Section ======= */
/* === 5. Footer Section ==================== */
/* === 6. Lg. Laptop CSS Section ============ */
/* === 7. Sm. Laptop CSS Section ============ */
/* === 8. Tablet CSS Section ================ */
/* === 9. Mobile CSS Section ================ */
/* === 10. Sm. Mobile CSS Section =========== */
/* ========================================== */

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

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

@font-face {
	font-family: 'font2';
	src:url('../fonts/poppins.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'font3';
	src:url('../fonts/Monoton-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'font4';
	src:url('../fonts/good-timing-bd.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'font11';
	src:url('../fonts/VLADIMIR.TTF') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'font7';
	src:url('../fonts/OPTITimes-Roman.otf') format('opentype');
	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');
}


body,html{
	overflow-x: hidden; 
}



/* Container */
.reviews-sc { padding: 100px 0; background: linear-gradient(to right, #ffffff8c, #ffffff8c), url(/img/led-gallery/led-gallery-10.jpeg);
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    background-repeat: no-repeat; }
.reviews-sc__container { max-width: 1160px; margin: 0 auto; padding: 0 16px; }
.reviews-sc__head { text-align:center; margin-bottom: 28px; }
.reviews-sc__head h2 { margin:0 0 8px;    color: #0067b2; text-shadow: 2px 2px 1px #fff;
    font-weight: 600;
    font-size: 3rem; }
.reviews-sc__head p { color:#555; margin:0; }

/* Grid */
.reviews-sc__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 992px) { .reviews-sc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-sc__grid { grid-template-columns: 1fr; } }

/* Card */
.reviews-sc__card {
  display:flex; flex-direction:column; gap:12px;
  background:#fff; border:1px solid #e6e6e6; border-radius:14px;
  padding:18px; box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.is-hidden { display:none; }

/* Top row */
.reviews-sc__top { display:flex; align-items:center; gap:12px; }
.reviews-sc__avatar {
  width:42px; height:42px; border-radius:50%;
  background:#c02026 ; color:#fff; display:grid; place-items:center;
  font-weight:700; letter-spacing:.5px; font-size:.9rem;
}
.reviews-sc__avatar::after { content: attr(data-initials); }
.reviews-sc__meta { display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; }
.reviews-sc__author { font-size:1rem; margin:0; }
.reviews-sc__stars { color:#ffb400; font-size:.95rem; line-height:1; }

/* Text clamp (initial) */
.reviews-sc__text {
  position:relative;
  max-height: 4.5em;  /* ~3 lines */
  overflow:hidden;
  color:#333; line-height:1.5;
}
.reviews-sc__text.expanded { max-height:none; }
.reviews-sc__text:not(.expanded)::after {
  content:"";
  position:absolute; inset:auto 0 0 0; height:2.2em;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 70%);
}

/* Actions */
.reviews-sc__actions {
  display:flex; justify-content:space-between; align-items:center; gap:10px; margin-top:auto;
}
.reviews-sc__toggle {
  border:1px solid #cbd5e1; background:#fff; color:#1f2937;
  padding:8px 12px; border-radius:10px; cursor:pointer; font-size:.9rem;
}
.reviews-sc__toggle:hover { background:#f8fafc; }
.reviews-sc__source { font-size:.9rem; color:#c02026 ; text-decoration:none; }
.reviews-sc__source:hover { text-decoration:underline; }

/* CTA */
.reviews-sc__cta { text-align:center; margin-top:28px; }
.reviews-sc__btn {
  display:inline-block; padding:12px 18px; border-radius:12px;
  background:#0067b2; color:#fff; border:none; cursor:pointer; font-weight:600;
}
.reviews-sc__btn:hover { filter:brightness(0.95); }



/* ======================================== */
/* === Top Header Section ================= */
/* ======================================== */
.top-header {
	position: fixed; width: 100%; z-index: 1; padding: 10px 0 10px 0; background: rgb(255,255,255);	z-index: 3; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
    background-color: #f54045; 
    /*animation: backgroundCycle 5s infinite alternate;*/
animation: backgroundCycle 5s ease-in-out infinite alternate;
    margin-top: -0;
	
/*	added to potentially fix flickering*/
	will-change: transform;
}
.top-header {
	color:white;  font-weight:650;
}
.top-header div[class*='col-']:first-child {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:first-child a {
	padding: 0; font-size: 15px; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.top-header div[class*='col-']:first-child a:hover {
	background-color: transparent;
}
/*.top-header div[class*='col-']:nth-child(2) {*/
/*	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-']:nth-child(2) a {
	padding: 9px 15px 9px 15px; background: #c02026; font-weight: bolder; font-family: 'font2'; color: white; border-radius: .6rem; border: 2px double black;
	    font-size: 19px;         font-family: monospace;
}
.top-header div[class*='col-']:nth-child(2) a:hover {
	background: #c02026;
}


.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(3) a {
	padding: 9px 15px 9px 15px; background: #c02026; font-weight: bolder; font-family: 'font2'; color: white; border-radius: .6rem; border: 2px double black;
	    font-size: 19px;         font-family: monospace;
	
}
.top-header div[class*='col-']:nth-child(3) a:hover {
	background: #c02026;
}
.top-header div[class*='col-']:nth-child(4) {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(4) a {
	padding: 9px 15px 9px 15px; background: #c02026; font-weight: 800; font-family: 'font2'; color: white; border-radius: .6rem; border: 2px double black;
	font-size:19px;         font-family: monospace;
}
.top-header div[class*='col-']:nth-child(4) a:hover {
	color: white;
}
.top-header div[class*='col-']:nth-child(5) {
	display: flex; justify-content: flex-start; align-items: center;
}
.top-header div[class*='col-']:nth-child(5) a {
    padding: 9px 15px 9px 15px;
    background: #c02026;
    font-weight: 800;
    font-family: 'font2';
    color: white;
    border-radius: .6rem;
    border: 2px double black;
    font-size: 14px;
    font-family: monospace;
}
.top-header div[class*='col-']:nth-child(5) a:hover {
	color: white;
}
.top-header div[class*='col-']:nth-child(6) a {
	display: flex; justify-content: center; align-items: center; border: 1px solid rgb(255,255,255); color: rgb(255,255,255); background: rgb(196,41,56); border-radius:100px;	height: 34px; width: 34px; margin: 0 4px;
}
.top-header div[class*='col-']:nth-child(6) a:hover {
	background: rgb(196,41,56,0.8);	text-decoration:none !important; color: rgb(255,255,255);
}


.top-header .dropdown-menu {
	background: whitesmoke; border-radius: 0;
}
.top-header .dropdown-menu a {
	color: #222; padding: 3px 20px !important;
}
.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;
}

/* ======================================== */
/* === Navigvation Section ================ */
/* ======================================== */
.navbar-inverse .navbar-inner {
	display:none;
}
.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 200px; padding: .5rem 0; margin: .125rem 0 0; font-size: 18px; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(255,255,255); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-menu.columns-3 {
	min-width: 600px;
}
.dropdown-menu li a {
	padding: 5px 15px; font-weight: 300;
}
.dropdown-item {
	display: block; width: 100%; font-weight: 600; font-family: 'font2'; padding: .25rem 1.5rem; clear: both; color: rgb(12,12,12); text-align: inherit; white-space: nowrap; background: 0 0;border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255,255,255); text-decoration: none; background-color: rgb(22,22,22) !important;
}
.dropdown {
	float: left; position: relative; margin: 0 10px; 
}
.dropdown .dropbtn {
	font-size: 16px; border: none; outline: none; color: #0067b2; padding: 14px 1px; background-color: inherit;font-family: 'font4'; margin: 0;
	text-align: center;
}
.navbar a:hover, .dropdown:hover .dropbtn {
	background-color: #0067b2;
	color: white;
	/*padding: 10px; */
}
.dropdown-one {
	cursor: pointer; display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-two {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 0px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-three {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 48px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown:hover .dropdown-one, #link1:hover > .dropdown-two {
	display: block;
}
.dropdown:hover .dropdown-one, #link2:hover > .dropdown-three {
	display: block;
}
.dropdown-one .dItem {
	color: black; padding: 12px 16px; display: block; text-align: left;
}
.dropdown-one .dItem:hover, .dropdown-two a:hover {
	background-color: #ddd;
}
.my-pad {
	padding: 0 0 0 15px;
}
.my-pad h5 {
	color: rgb(255,255,255); font-size: 18px; text-transform: uppercase; padding-top: 20px;	line-height: 5px; font-weight: 600;
}
.multi-column-dropdown {
	list-style: none; margin: 0px; padding: 0px;
}
ul.multi-column-dropdown {
	padding: 0 0 0;
}
.multi-column-dropdown li a {
	display: block;	clear: both; line-height: 1.428571429; color: #333; white-space: normal;
}
.multi-column-dropdown li a:hover {
	text-decoration: none; color: #262626; background-color: #999;
}

.top-header-animate {
	background: rgb(255,255,255);
}
.top-header-animate .dropdown-toggle {
	color:#0a0a0a; font-size: 16px;
}
.top-header-animate .navbar-brand {
	font-size: 1.5em;
}
body {
	padding: 0; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.navbar-scroll {
	padding:95px 0 40px; position: fixed;   /*background-color: #f54045; 
    animation: backgroundCycle 5s infinite alternate;*/ width: 100%; z-index: 2;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
	background: white;
}
.navbar-scroll img {
	position:absolute;
	margin-top:-10px;
	margin-left:-60px; 
}
.navbar-scroll .appointment{
	padding:10px;
	background-color: #c02026;
	color: white;
	border-radius: 15px;
	font-size:18px;
	margin-left:35px;
	display:inline;
	font-weight: 700; 
}
.navbar-scroll .blue{
	padding:10px;
	background-color: #0067b2;
	color: white;
	border-radius: 15px;
	font-size:19px;
	display:inline;

}

.navbar-scroll .blue-clear{
	padding:10px;
	background-color: transparent;
	color: #0067b2;
	font-size:19px;
	display:inline;
	
	font-weight: 700; 
}

@keyframes backgroundCycle {
    0% {
        background: #f54045; /* Solid Red */
    }
    100% {
        background: #0067b2; /* Solid Blue */
    }
}
.navbar-scroll .container {
	background: rgb(60,36,17,0); border-bottom-left-radius: 1.5rem;	border-bottom-right-radius: 1.5rem;
}
#projects .navbar-scroll {
	background: #fdfdfd; position:relative !important;
}
#projects .navbar-scroll li a {
	color:#333;
}
#projects .navbar-scroll .navbar-brand {
	color:#252525;
}
#projects .navbar-light .lnr {
	color:#222;
}
.navbar-light .lnr {
	color: #fdfdfd;	font-size: 1.5em; position: absolute; top: 6px; right: 10px;
}
.navbar-light .navbar-brand {
	color: #e8e8e8; font-size: 20px; font-family: 'Montserrat', sans-serif;
}
.navbar-brand {
	font-size:2.5em; font-weight:700; text-transform:uppercase;
}
.navbar-brand:focus, .navbar-brand:hover {
	color:#f3f3f3 !important;
}
.navbar-light .navbar-nav .nav-link {
    margin: 0 20px;
    padding: 6px 0px;
    font-weight: 900;
    font-size: 14px;
    /*color: rgb(255, 255, 255);*/
    color: #0067b2;
    font-family: 'font4';
    letter-spacing: 2px;
	text-align:center;
	
}
.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 {
	
}
.navbar-light .navbar-nav li a {
	position: relative;
}
.navbar-collapse {
	height: 100%;
}
.mobile-top-header {
	display: none !important;
}

/* ========================================== */
/* === Website Pages Section ================ */
/* ========================================== */

/**** Home Section ****/
.bg-primary {
	background: rgb(83,82,82) !important;
}

.box-shadow-effect {
    box-shadow: 1px 1px 10px 1px black; /* Default shadow */
    transition: box-shadow 0.3s ease; /* Smooth transition for hover */
}

/* Add a hover effect */
.box-shadow-effect:hover {
    box-shadow: 2px 2px 15px 2px black; /* Stronger shadow on hover */
}
.home-header-section {
	padding-top: 125px;
}
.home-header-section .slider-logo span {
	font-family: 'font'; color: rgb(196,41,56);
}

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



.home-intro {
    background: linear-gradient(90deg, #ffffffd9 15.4%, #ffffffd9 15.4%, rgba(255, 255, 255, 0.85) 84.7%, #ffffffd9 84.7%), url(/img/kitchen-lighting.jpg);
	padding: 300px 0px 200px 0px;
margin-top: -200px;
    min-height: auto;
    background-position: bottom;
    overflow: hidden; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;box-shadow: 1px 1px 5px 1px #444; 
}
.home-intro h2 {
	font-family: font4; font-size: 65px; line-height: 85px; color: #000;text-shadow: 2px 2px 1px #fff; text-align: center;
}
.home-intro h2 u {
	color: #0067B2;
}
.home-intro h3 {
	font-family: monospace; font-size: 20px; color: #000; line-height: 40px;
}
.home-intro p {
	font-family: monospace; font-weight: 600; color: #fff; line-height: 35px; font-size: 25px;text-shadow: 1px 1px 3px #000; padding: 10px 150px 10px 50px;
}
.home-intro .infograph {
	padding: 35px; 
}
.home-intro mark {
	padding: 25px; font-size: 20px; background: #c02026; color: #fff; font-family: font4; font-weight: 500; text-transform: uppercase;
}
.home-intro mark:hover {
	box-shadow: 0px 0px 0px 25px #c02026; transition: .5s;
}


.home-intro-new {
    /*background: linear-gradient(90deg, #ffffffd9 15.4%, #ffffffd9 15.4%, rgba(255, 255, 255, 0.85) 84.7%, #ffffffd9 84.7%), url(/img/kitchen-lighting.jpg);*/
    background: linear-gradient(90deg, #ffffffd9 15.4%, #ffffffd9 15.4%, rgba(255, 255, 255, 0.85) 84.7%, #ffffffd9 84.7%), url(/img/homepage/home-electric-slider.jpg);
	background-position:50% 50%;
	padding: 340px 0px 200px 0px;
margin-top: -0;
    min-height: auto;
    background-position: bottom;
    overflow: hidden; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;box-shadow: 1px 1px 5px 1px #444; 
}
.home-intro-new h1 {
	font-family: font4; font-size: 65px; line-height: 55px; color: #0067b2;text-shadow: 2px 2px 1px #fff; text-align: left; text-transform: uppercase;;
}
.home-intro-new h1 span{
	color: #c02026;
	font-style: italic;
}
.home-intro-new h2 {
	font-family: font4; font-size: 65px; line-height: 55px; color: #0067b2;text-shadow: 2px 2px 1px #fff; text-align: left;
}
.home-intro-new h2 u {
	color: #0067B2;
}
.home-intro-new h3 {
	/*font-family: monospace; font-size: 20px; color: #000; line-height: 40px; font-size: 21px;*/
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size:22px;
    /*padding: 20px;	*/
}
.home-intro-new h4 {
	/*font-family: monospace; font-size: 20px; color: #0067b2; line-height: 40px; font-size: 1.45rem;*/
	
    font-family: monospace;
    font-size: 20px;
    color: #0067b2;
    line-height: 40px;
    font-size: 1.45rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
	
	
	
}
.home-intro-new p {
	font-family: monospace; font-weight: 600; color: #fff; line-height: 35px; font-size: 25px;text-shadow: 1px 1px 3px #000; padding: 10px 150px 10px 50px;
}
.home-intro-new .infograph {
	padding: 35px; 
}
.home-intro-new mark {
	padding: 25px; font-size: 20px; background: #c02026; color: #fff; font-family: font4; font-weight: 500; text-transform: uppercase;
}
.home-intro-new img {
	border-radius: 20px;
}
.home-intro-new mark:hover {
	box-shadow: 0px 0px 0px 25px #c02026; transition: .5s;
}
.home-intro-new a.red {
	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;
    font-weight:700;
    width:auto;
    font-size: 1.2rem;
	display: inline-block;
}
.home-intro-new a.blue {
	background: #0067b2; width: 10%; padding: 15px 5px; color: white; border: 2px solid #0067b2; border-radius: 14px;
    font-weight:700;
    width:auto;
    font-size: 1.2rem;
	display: inline-block;

}
.home-intro-new a.blue-clear {
	
/*	background: transparent; width: 10%; padding: 15px 5px; color: #0067b2; border: 2px solid transparent; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 1.2rem;*/
/*	display: inline-block;*/
/*	*/
	
    background: transparent;
    width: 10%;
    padding: 15px 5px;
    color: #0067b2;
    border: 2px solid transparent;
    border-radius: 14px;
    font-weight: 700;
    width: auto;
    /*font-size: 1.6rem;*/
    font-size: 1.75rem;
    flex-wrap: nowrap;
    display: flex;
}


/* Styling for Marquee */
.marquee-wrapper {
    overflow: hidden;              /* Hide overflow to create scrolling effect */
    white-space: nowrap;            /* Keep content in a single line */
    position: relative;             /* Ensure child elements are positioned correctly */
    background-color: white;        /* Background color of the marquee */
    width: 100%;                    /* Full width of the screen */
    padding: 10px 0;                /* Optional padding */
}

.marquee-content {
    display: inline-block;          /* Display images in a single row */
    animation: marquee 20s linear infinite;  /* Infinite scrolling animation */
}

.marquee-img {
    max-height: 150px;              /* Control image height */
    width: auto;                    /* Maintain aspect ratio */
    margin-right: 15px;             /* Spacing between images */
}

/* Keyframes for Scrolling Animation */
@keyframes marquee {
    from {
        transform: translateX(100%);  /* Start with content just off-screen */
    }
    to {
        transform: translateX(-100%); /* Move content all the way to the left */
    }
}





/**/
/**/
/**/
/**/
/**/
/**/
/**/
/* Marquee styles */
/* Marquee Styling */
.marquee {
	
	padding:15px 0;
    --gap: 20px;                     /* Adjust spacing between images */
    position: relative;
    display: flex;
    overflow: hidden;
    gap: var(--gap);                /* Use CSS variable for gap */
    user-select: none;              /* Prevent text/image selection */
}

.marquee-content {
    flex-shrink: 0;                 /* Prevent shrinking */
    display: flex;                 /* Horizontal alignment */
    justify-content: space-around;
    gap: var(--gap);               /* Control spacing */
    min-width: 100%;               /* Ensure it takes up full width */
    animation: scroll 38s linear infinite; /* Infinite scroll animation */
}

.marquee-img {
    max-height: 160px;             
    width: 100%;
}

/* Keyframes for Continuous Scrolling */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap))); /* Scroll off-screen */
    }
}

/* Optional: Reverse Scroll Direction */
.marquee--reverse .marquee-content {
    animation-direction: reverse;
}

/* Optional: Pause on Hover */
.marquee:hover .marquee-content {
    /*animation-play-state: paused;*/
}


/*Company Marquee END*/


/*WHY HOMEOWNERS*/

.why-homeowners{
    
}

.why-homeowners {
	padding: 100px 0; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.why-homeowners h4 {
	font-family: font4; font-size: 2rem; color: #c02026;
}
.why-homeowners h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}

.why-homeowners h2{
	color: #0067b2;
    font-weight: 600;
	font-size:3rem;
	
}
.why-homeowners h2.sub{
	color: #0067b2;
    font-weight: 600;
	font-size:1.8rem;
	line-height: 35px;
}
.why-homeowners h2.sub span{
	font-style: italic; 
}


.why-homeowners p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 0;
	text-align: justify ;
}

.why-homeowners a.red {
/*	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 14px;*/
    background: #c02026;
    width: auto;
    padding: 15px 5px;
    color: white;
    border: 2px solid #c02026;
    border-radius: 14px;
    font-weight: 700;
    dis: auto;
    font-size: 1.2rem;
    display: inline-block;
	
	text-align: center;
}

.why-homeowners a.red.large{
	font-size: 1.65rem;
	padding: 20px 10px; 
}



.why-homeowners a.blue {
/*	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 14px;*/
    background: #0067b2;
    width: auto;
    padding: 15px 5px;
    color: white;
    border: 2px solid #c02026;
    border-radius: 14px;
    font-weight: 700;
    dis: auto;
    font-size: 14px;
    display: inline-block;
}


.why-homeowners a.blue-clear {
/*	background: transparent; width: 10%; padding: 0; color: #0067b2; border: 2px solid transparent; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 1.2rem;*/
/*	display: inline-block;*/
	background: transparent; width: 10%; padding: 0; color: #0067b2; border: 2px solid transparent; border-radius: 14px;
    font-weight:700;
    width:auto;
    font-size: 1.85rem;
	display: inline-block;

}


.why-homeowners i {
	font-size: 20px; color: #c02026; margin-top: 0; margin-left: 25px;
}
.why-homeowners hr {
	background: #c02026; height: 2px;
}
.why-homeowners .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.why-homeowners .padder h2{
	color: #c02026;
    font-weight: 600;
}
.why-homeowners .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}

/*WHY HOMEOWNERS END*/

.home-company-video1{
    
}

.home-company-video1 {
	padding: 100px 0; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home-company-video1 h4 {
	font-family: font4; font-size: 2rem; color: #c02026;
}
.home-company-video1 h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}

.home-company-video1 h2{
	color: #0067b2;
    font-weight: 600;
	font-size:3rem;
	
}
.home-company-video1 h2.sub{
	color: #0067b2;
    font-weight: 600;
	/*font-size:1.8rem;*/
	font-size:2.7rem;

	line-height: 50px;
	font-family: 'font7';

}
.home-company-video1 h2.sub span{
	font-style: italic; 
}


.home-company-video1 p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 1.73rem;
    padding: 0;
	/*text-align: justify;*/
	text-align: center;
	padding:0 00px; 
	
}
.home-company-video1 p.squish {
	text-align:justify;
	padding:0 300px; 
	
}
.home-company-video1 a.red {
/*	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 14px;*/
    background: #c02026;
    width: auto;
    padding: 15px 5px;
    color: white;
    border: 2px solid #c02026;
    border-radius: 14px;
    font-weight: 700;
    dis: auto;
    font-size: 1.2rem;
    display: inline-block;
	
	text-align: center;
}

.home-company-video1 a.red.large{
	font-size: 1.65rem;
	padding: 20px 10px; 
}



.home-company-video1 a.blue {
/*	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 14px;*/
    background: #0067b2;
    width: auto;
    padding: 15px 5px;
    color: white;
    border: 2px solid #c02026;
    border-radius: 14px;
    font-weight: 700;
    dis: auto;
    font-size: 14px;
    display: inline-block;
}


.home-company-video1 a.blue-clear {
/*	background: transparent; width: 10%; padding: 0; color: #0067b2; border: 2px solid transparent; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 1.2rem;*/
/*	display: inline-block;*/
	background: transparent; width: 10%; padding: 0; color: #0067b2; border: 2px solid transparent; border-radius: 14px;
    font-weight:700;
    width:auto;
    font-size: 1.85rem;
	display: inline-block;

}


.home-company-video1 i {
	font-size: 20px; color: #c02026; margin-top: 0; margin-left: 25px;
}
.home-company-video1 hr {
	background: #c02026; height: 2px;
}
.home-company-video1 .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.home-company-video1 .padder h2{
	color: #c02026;
    font-weight: 600;
}
.home-company-video1 .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}




.motion1 {
	/*background: linear-gradient(107deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.7524350804775035) 49%, rgba(192, 32, 38, 1) 49%, rgba(192, 32, 38, 1) 49.3%, rgba(0, 0, 0, 0.0) 49.3%), url(/img/electrical-1.jpg);*/
	background: linear-gradient(107deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.7524350804775035) 49%, rgba(192, 32, 38, 1) 49%, rgba(192, 32, 38, 1) 49.3%, rgba(0, 0, 0, 0.0) 49.3%), url(/img/led-gallery/led-gallery-3.jpeg);
	
	background-size: cover;
	padding: 100px 0 150px 0;
}
.motion1 .carousel {
  --current-slide: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 10px 3px #000;
}
.motion1 .carousel-button {
  /* vertically centering the buttons */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  padding: 0;
  margin: 0.5rem;
  margin-left: 35px;
	height: 35px;
	width: 35px;
  border-radius: 100%;
	line-height: 0.9;
	color: rgb(83,82,82);
  background-color: transparent;
  border: none;
  font-size: 50px;
  cursor: pointer;
  transition: color 0.1s;
}
.motion1 .carousel-button:hover {
  color: rgba(0, 0, 0, 0.5);
	border: none;
}
.motion1 .carousel-button.active {
	border: none !important;
}
.motion1 .carousel-button_next {
  right: 0;
  margin-right: 35px;
	border: none;
}
.motion1 .slides {
  display: flex;
  transition: transform 0.5s;
  transform: translateX(calc(-100% * var(--current-slide)));
}
.motion1 .slide {
  flex: 0 0 100%;
	    background: #f5f5f5;/* margin-bottom: -75px;*/
    padding: 50px 150px 25px 150px; 
}
.motion1 h2 {
	font-family: monospace;
	color: #c02026; text-align: center;
	font-size: 25px;
}
.motion1 span {
	color: rgb(196,41,56);
}
.motion1 span:hover {
	color: #0009;
}
.motion1 h3 {
	font-family: font4; font-size: 50px; text-align: center; padding-bottom: 75px;text-shadow: 2px 1px 1px #fff;
}
.motion1 p i {
	font-size: 45px; color: #c02026;
}
.motion1 .slide p {
  color: rgb(150,150,150);
	font-family: 'font2';
	text-align: center;
	font-size: 20px;
	font-weight: 600;
}
.home1 {
	padding: 145px 0px 200px 0px; background: #EAE8E8;
}
.home1 .plax1 {
	/*background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/el-3.jpg");*/
	background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/kitchen-lighting-1.jpg");

	
    min-height: auto;
   background-attachment: fixed;
    background-position: center;
    overflow: hidden;
    padding:  50px; height: 100%; width: 103%;
    background-repeat: no-repeat;
    background-size: cover;
}
.home1 .spanner {
	padding: 100px 25px 100px 25px;
}
.home1  .push {
	padding: 15px; margin-left: 50px;
}
.home1 .push:hover {
	 transition: 1s; background: linear-gradient(90deg, #444 18%, rgba(255,255,255,1) 18%); box-shadow: 1px 1px 10px 1px #000; border-radius: 25px;
}
.home1 .push img {
	
}
.home1 .push:hover img {
	box-shadow: 1px 1px 10px 1px #000;
}
.home1 .push:hover h2 {
	margin-left: 100px; color: #0067b2; transition: 1.5s; font-weight: 600; text-decoration: overline;
}
.home1 iframe {
	opacity: 50%;
}
.home1 .pad {
	padding: 50px 75px 50px 75px; background: #fff; height: 100%; border-left-width: 5px; border-top-width: 5px; 
}
.home1 h1 {
	font-family: 'font4'; font-size: 40px; text-align: center; font-weight: 500; color: #0067b2; line-height: 75px;
}
.home1 h2 {
	font-size: 35px; font-family: monospace; padding: 25px 0px 10px 0px; color: #fff; text-shadow: 1px 1px 1px #000;
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600; text-align: center; color: rgb(150,150,150); line-height: 35px;
}
.home1 h1 span {
	color: rgb(83,82,82); font-size: 50px; text-shadow: 2px 2px 1px #000;
}
.home1 h1 strong {
	 font-size: 40px;
}
.home1 img {
	    background: #fff;
    border-radius: 25%;
    padding: 10px; margin: 5px 0px 5px 0px;
    border: 3px solid ;
}
.home1 hr {
	background: #fff;
}
.home2 {
	background: #f5f5f5; padding: 150px 0px 150px 0px;
	height: 920px; 
}
.home2 .container-fluid {
	padding-left: 0px;
}
.home2 h4 {
	font-family: monospace; font-weight: 600; font-size: 2.8rem; text-align: center; color: #0067b2;
}
.home2 h5 {
	font-weight:bold; text-decoration:underline;
	text-align: center;
	font-size:1.4rem;
}
.home2 .boxer mark {
	color: transparent; background: transparent;
}
.home2 .boxer h6 {
	color: transparent; background: transparent;
}
.home2 .boxer:hover mark {
	padding: 15px; font-family: font4; letter-spacing: 2px; color: #fff; text-shadow: 1px 1px 1px #444; background: #0067b2; border-radius: 15px; width: 75%;
}
.home2 .boxer:hover h6 {
	padding: 15px; font-family: font4; letter-spacing: 2px; color: #fff; text-shadow: 1px 1px 1px #444; background: #f54045; border-radius: 15px; width: 50%;
}
.home2  p {
	font-family: font2; line-height: 35px; font-size: 1.063rem;
	font-size: 1.35rem;
	text-align: center; font-weight: 600;
}
.home2 .boxer {
	padding: 75px 25px 0px 25px; background: #fff; height: 100%;    border-radius: 25px;
}
.home2 img {
	max-width: 85%; margin-top: 5px;
}
.shadowy{
    max-width: 80%;
    margin-top: 5px;
    box-shadow: -4px -5px 8px black;
    border-radius: 20px;	
}

.home2 .plax2 {
	/*background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/electrical-3.jpg");*/
	background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/wired-6.jpg");
	border-top-right-radius: 25px;border-bottom-right-radius: 25px; 
	min-height: auto;
   background-attachment: fixed;
    background-position: left;
    overflow: hidden;
    padding: 150px 50px 150px 50px; 
    background-repeat: no-repeat;
	height: 350px;
    background-size: 75%; 
}
.home2 .plax2:hover {
	background: #fff;height: 350px;box-shadow: 1px 1px 5px 1px #444;
}
.home2 .plax2 h3 {
	font-family: font4; padding: 10px; background: #c02026; text-align: center; transform: rotate(320deg);
        margin-left: -650px;
    color: #fff;
    margin-top: -75px;
    
}
.home2 .plax2:hover h3 {
	transform: rotate(0deg);
    margin-left: 0px;
    margin-top: -50px;
	padding: 10px; background: #0067b2; color: #fff; transition: 1s; width: 75%; margin-left: 50px;
}
.home2 .plax2 h5 {
	color: transparent; font-size: 20px; font-family: font2; font-weight: 600;
}
.home2 .plax2:hover h5 {
	color: #000; margin-top: 15px;
}
.home2 .plax2:hover h5 span {
	color: #0067b2;
}
.home2 .plax2  p {
	font-family: font2; line-height: 35px; font-size: 17px; color: transparent; text-align: center;
}
.home2 .plax2:hover p {
	color: #000;
}
.home2 .plax2 img {
	max-width: 25%;
}
.home2 .plax2:hover img {
	display: none;
}
.home-solutions-section{
    
}

.home-solutions-section {
	padding: 100px 110px 100px 110px; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home-solutions-section h3 {
	font-family: font4; font-size: 2.7rem; color: #0067b2;
}
.home-solutions-section h2{
	/*color: #c02026;*/

    color: #0067b2;


    font-weight: 600;
	font-size: 2.35rem;
}
.home-solutions-section p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 1.55rem;;
    padding: 20px;
}
.home-solutions-section i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home-solutions-section hr {
	background: #c02026; height: 2px;
}
.home-solutions-section .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
	/*text-align: center; */
}
.home-solutions-section .padder h2{
	color: #c02026;
    font-weight: 600;
	text-align: center; 
}
.home-solutions-section .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}

.home-solutions-section .padder a{
    color:black;
}


.home-solutions-section p.padder-content:hover{
	color: white;
	background: #c02026;
    font-weight: 600;
	text-align: center; 
}

.tooltip.show {
    opacity: 1 !important; /* Fully opaque */
}

.tooltip-inner {
    background-color: #0067b2; /* Background color */
    color: #fff; /* Text color */
    font-size: 1.5rem; /* Adjust font size */
    max-width: none; /* Limit the tooltip width */
    width: 120%;
    text-align: left; /* Align text */
    padding: 15px; /* Add padding */
    border-radius: 8px; /* Rounded corners */
    opacity: 1; /* Ensure the tooltip content is opaque */
}

.tooltip ul {
    margin: 0;
    padding: 0;
    list-style-type: none; /* Use bullets for the list */
}

.tooltip ul li {
    margin-bottom: 5px; /* Space between list items */
}

/* Ensure hover effects for padder-content */
.home-solutions-section p.padder-content:hover {
    color: white;
    background: #c02026;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.home-customers-benefit{
    
}

.home-customers-benefit {
	padding: 100px 110px 100px 110px; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home-customers-benefit h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}
.home-customers-benefit h2{
	/*color: #c02026;*/
	color:#0067B2;
    font-weight: 800;
	font-size:2.7rem;
}
.home-customers-benefit p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
	text-align: justify;
}


.home-customers-benefit .text-square p{
    width: 300px; /* Define the square's width */
	height: 900px;
    aspect-ratio: 1 / 1; /* Ensure the height matches the width */
    display: flex; /* Flexbox for centering */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    text-align: center; /* Optional: Align text inside */
    padding: 20px; /* Inner padding for spacing */
    box-sizing: border-box; /* Include padding in dimensions */
}
.home-customers-benefit a.blue {
    /* font-weight: 700; */
    /* width: auto; */
    /* font-size: 14px; */
    background: #c02026;
    width: auto;
    padding: 15px 5px;
    color: white;
    border: 2px solid #c02026;
    border-radius: 14px;
    font-weight: 700;
    dis: auto;
    font-size: 14px;
    display: inline-block;
font-size: 1.65rem;
    padding: 20px 10px;
	
	box-shadow: 1px 1px 10px 1px black; 
	transition: box-shadow 0.2s ease; /* Smooth transition for hover effect */
}
.home-customers-benefit a.blue:hover {

	box-shadow: 4px 4px 10px 4px black; 
	
}

.home-customers-benefit i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home-customers-benefit hr {
	background: #c02026; height: 2px;
}
.home-customers-benefit .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.home-customers-benefit .padder h2{
	color: #c02026;
    font-weight: 600;
}
.home-customers-benefit .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}

/*OFFERS SECTION*/
.home-contact-split{
	
	position:relative;
}
.home-contact-split {
	padding: 70px 90px 70px 90px; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home-contact-split h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}
.home-contact-split h4 {
	font-family: font4; font-size: 19px; color: #c02026;
	text-align: center;
}
.home-contact-split h2{
	/*color: #c02026;*/
	color:white;
    font-weight: 600;
}
.home-contact-split p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
}



.home-contact-split a.blue {
	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;
    font-weight:700;
    /*width:auto;*/
    font-size: 14px;
    display: grid;
    width: 80%;
}

.home-contact-split hr {
	background: #c02026; height: 2px;
}
.home-contact-split .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.home-contact-split .padder h2{
	color: #c02026;
    font-weight: 600;
}
.home-contact-split .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}


.home-contact-split .offer-card{
	
    min-width: 100%;
    box-sizing: border-box;
    padding: 35px;
    text-align: center;
    background: #fff;
    border: 1px solid #c02026;
    border-radius: 10px;
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
	transition: 0.5s; 

}


.home-contact-split .offer-card h3 {
    font-family: font4;
    font-size: 33px;
    color: #c02026;
}



.home-contact-split .offer-card ul {
    list-style-position: outside;
    padding-left: 20px;
    margin: 0;
}

.home-contact-split .offer-card li {
    margin: 0;
    padding: 8px 0;
    text-align: left;
}
.home-contact-split .offer-card h2 {
	color: #c02026;
}
.home-contact-split .offer-card li p {
    padding: 0;
    display: inline;
    margin: 0;
    font-size: 1.1rem;
    line-height: 20px;
    margin-left: 0;;
}
.home-contact-split .offer-card li p {
    padding: 0;
    display: inline;
    margin: 0;
    font-size: 1.1rem;
    line-height: 20px;
    margin-left: 0px;
}
.home-contact-split .offer-card li p span {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.3rem;
}


.home-contact-split .offer-card  a.appointment {
    background: #c02026;
    color: white;
    border: 1px solid black;
    padding: 10px;
    border-radius: 20px;
    display: inline-flex;
}

.home-contact-split a.related-service {
	color:black;
}
.home-contact-split a.related-service:hover .offer-card{
	box-shadow:0px 3px 10px black;
	transform: scale(1.01);
}
.related-service.highlight {
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-service.highlight:hover {
	box-shadow: 0px 3px 10px black;
	transform: scale(1.01);
}


.home-contact-split .marker{
	
	/*position:absolute;*/
	bottom:0; left:0;
	
	color:white;

}
.home-contact-split .marker p{
	
	font-style: italic;
	font-family: inherit;
	font-size:1.1rem; 
}

.home-contact-split .marker span{
	
	font-weight: 700; 

	
}


/**/
/*SLIDER FOR COUPONS START*/
.manual-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 35px;
    text-align: center;
    background: #fff;
    border: 1px solid #c02026;
    border-radius: 10px;
}
.slide a{
	background: #c02026;
	color: white;
    border: 1px solid black;;
	padding: 10px;
	border-radius: 20px;
	display:inline-flex; 
	
}
.slide a:hover{
	color: #C9C9C9;
	
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


.slide ul {
    list-style-position: outside;
    padding-left: 20px;
    margin: 0;
}

.slide li {
    margin: 0;
    padding: 8px 0;
    text-align: left;
}
.slide h2 {
	color: #c02026;
}
.slide li p {
    padding: 0;
    display: inline;
    margin: 0;
    font-size: 1.1rem;
    line-height: 20px;
    margin-left: 0;;
}
.flip-card-back li p {
    padding: 0;
    display: inline;
    margin: 0;
    font-size: 1.1rem;
    line-height: 20px;
    margin-left: 10px;
}
.slide li p span {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.3rem;
}


/**/
/*SLIDER FOR COUPONS END*/

/*OFFERS SECTION END*/










.home-testimonials{
    
}

.home-testimonials {
    padding: 250px 150px 200px 150px;
    background-image: linear-gradient(rgb(0, 0, 0, 0.0), rgb(11, 11, 11, 0.0)), url(/img/smart-home-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.home-testimonials h3 {
	font-family: font4; font-size: 35px; color: #c02026;     font-weight: 600;

}
.home-testimonials h2{
	/*color: #c02026;*/
	color:#0067B2;
    font-weight: 600;
}
.home-testimonials p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
}
.home-testimonials a.blue {
	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;
    font-weight:700;
    /*width:auto;*/
    font-size: 14px;
    display: grid;
    width: 80%;
}
.home-testimonials i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home-testimonials hr {
	background: #c02026; height: 2px;
}
.home-testimonials .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.home-testimonials .padder h2{
	color: #c02026;
    font-weight: 600;
}
.home-testimonials .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}




/*
.about-page-referrals {
	padding: 120px 55px 200px 55px;
background: linear-gradient(0.65turn, #3f87a6, #e1eff8, #5B5B5B);
		background-size: cover;
}
.about-page-referrals h1 {
	font-family: 'font2';
	font-size: 5.5rem;;
  text-align: left;
	line-height: 70px;
	text-shadow: 1px 1px 1px #000;
	font-weight: 800;
	color: rgb(250,250,250);
}
.about-page-referrals h2 {
	font-family: 'font2';
	font-size: 3.3rem;
  text-align: center;
	line-height: 70px;
	text-shadow: 10px 5px 20px #000;
	font-weight: 700;
	color: rgb(250,250,250);
    font-family: 'Montserrat', sans-serif;
	
}
.about-page-referrals h3 {
	color: #fff; text-indent: 15px; line-height: 45px; font-size: 2rem; font-weight: 700; text-shadow: 1px 1px 0px  black;
    color: gray;

}
.about-page-referrals h4 {
	color: #fff; text-indent: 15px; line-height: 25px; font-size: 1.25rem; font-weight: 700; text-shadow: 3px 3px 20px black; text-decoration: underline;
	text-align: center; 
}
.about-page-referrals h4.pricing {
	color: #fff; text-indent: 0; line-height: 25px; font-size: 1.25rem; font-weight: 700; text-shadow: 5px 5px 5px black; text-decoration: none;
}
.about-page-referrals h5 {
	color: #fff; font-size: 16px;
}
.about-page-referrals h5 span {
	color: gold;
}
.about-page-referrals p {
    font-size: 1.4rem;
    font-family: 'font2';
    font-weight: 600;
    line-height: 35px;
    text-shadow: 0 0 0  black;
    text-align: justify;
    color: gray;
}





.motion1 {
	background: rgb(255,255,255);
	padding: 100px 0 75px 0;
}
.about-page-referrals .carousel {
  --current-slide: 0;
  position: relative;
  overflow: hidden;
}
.about-page-referrals .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  padding: 0;
  margin: 0.5rem;
	height: 40px;
	width: 40px;
  border-radius: 100%;
	line-height: 0.9;
	color: rgb(83,82,82);
  background-color: transparent;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.1s;
}
.about-page-referrals .carousel-button:hover {
  color: rgba(0, 0, 0, 0.5);
	border: none;
}
.about-page-referrals .carousel-button.active {
	border: none !important;
}
.about-page-referrals .carousel-button_next {
  right: 0;
	border: none;
}
.about-page-referrals .slides {
  display: flex;
  transition: transform 0.5s;
  transform: translateX(calc(-100% * var(--current-slide)));
}
.about-page-referrals .slide {
  flex: 0 0 100%;
	padding: 0px 100px 0px 100px;
	max-width: 100%;
    align-content: center;
}
.about-page-referrals .slide h2{
	text-align: center;
	font-weight: 700;
	color: rgb(250, 250, 250);
}
.about-page-referrals .slide h3{
	text-align: center;
	font-weight: 700;
	color: #2b8dce;
}

.about-page-referrals span {
	color: #2b8dce;
}
.about-page-referrals .slide p {
  color: rgb(150,150,150);
	font-family: 'font2';
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
}

*/








.home-map{
    padding:0;
	background: gray;
}

.home-faq{
    padding:100px 0;
	background: white;;
}
.home-faq h4 {
	font-family: monospace; font-weight: 600; font-size: 40px; text-align: center; color: #0067b2;
}
.home-faq h5 {
	font-family: monospace; font-weight: 700;  text-align: center; font-size: 1.5rem;;
}
.home-faq .boxer mark {
	color: transparent; background: transparent;
}
.home-faq .boxer h6 {
	color: transparent; background: transparent;
}
.home-faq .boxer:hover mark {
	padding: 15px; font-family: font4; letter-spacing: 2px; color: #fff; text-shadow: 1px 1px 1px #444; background: #0067b2; border-radius: 15px; width: 75%;
}
.home-faq .boxer:hover h6 {
	padding: 15px; font-family: font4; letter-spacing: 2px; color: #fff; text-shadow: 1px 1px 1px #444; background: #f54045; border-radius: 15px; width: 50%;
}
.home-faq  p {
	font-family: font2; line-height: 35px; font-size: 17px; text-align: center; font-weight: 600;
}
.serv6 {
		padding: 100px 0px 100px 0px;
    background-color: #f5f5f5;
}
.serv6 h2 {
	font-family: monospace;
    font-weight: 600;
    font-size: 3rem; padding-bottom: 50px;
    text-align: center;
    color: #0067b2;
}
.serv6 p {
	font-size: 16px;
	padding-top: 20px;
	font-family: 'font2';
	color: #444;
	text-align: justify;
}
.serv6 i {
	/*font-size: 20px;*/
	/*color: #0067b2;*/
    font-size: 40px;
    color: white;
}
.serv6 button {
	border-radius: 1.6rem;
	border: 1px solid rgb(255,255,255);
	background: rgb(246,177,24);
	font-size: 14px;
}
.serv6 button:hover {
	background: rgb(246,177,24,0.8);
}
.serv6 img {
	border-radius: 0.6rem;
}
.serv6 .box{
    width: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
	text-align: center;
	background: #0067b2;
}
.serv6 span{
    transition: 200ms;
    font-weight: 600;
    font-size: 18px;
}
.serv6 .bg-dark {
    background-color: transparent !important; color: #444; padding: 1rem;
}
.serv6 .bg-dark:hover {
    background-color: #0067B2 !important; color: #fff;
}
.serv6 .bg-dark:hover i {
	color: #fff;
}
.serv6 .content{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .content_2{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .content_3{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .content_4{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .content_5{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .content_6{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .content_7{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .content_8{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .content_9{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .content_10{
    overflow: hidden;
    max-height: 0px; background: #f5f5f5;
    transition: 300ms ease-in;
	font-family: font2;
    line-height: 35px;
    font-size: 17px;
    font-weight: 600;
}
.serv6 .header{
    cursor: pointer;
	font-family: monospace;
    font-weight: 700;
    font-size: 1.75rem;
	font-family:'font2';
}
.serv6 .header_2{    
 cursor: pointer;
	font-family: monospace;
    font-weight: 700;
	font-family:'font2';

    font-size: 1.75rem;
}
.serv6 .header_3{
 cursor: pointer;
	font-family: monospace;
    font-weight: 700;
    font-size: 1.75rem;
	font-family:'font2';
	
}
.serv6 .header_4{
    cursor: pointer;
	font-family: monospace;
    font-weight: 700;
    font-size: 1.75rem;
	font-family:'font2';

}
.serv6 .header_5{
    cursor: pointer;
	font-family: monospace;
    font-weight: 700;
    font-size: 1.75rem;
	font-family:'font2';

}
.serv6 .header_6{
    cursor: pointer;
	font-family: monospace;
    font-weight: 700;
    font-size: 1.75rem;
	font-family:'font2';
	
}
.serv6 .header_7{
    cursor: pointer;
	font-family: monospace;
    font-weight: 700;
    font-size: 1.75rem;
	font-family:'font2';

}
.serv6 .header_8{
    cursor: pointer;
	font-family: monospace;
    font-weight: 700;
    font-size: 1.75rem;
	font-family:'font2';

}
.serv6 .header_9{
    cursor: pointer;
	font-family: monospace;
    font-weight: 700;
    font-size: 1.75rem;
	font-family:'font2';
	
}
.serv6 .header_10{
    cursor: pointer;
	font-family: monospace;
    font-weight: 700;
    font-size: 1.75rem;
	font-family:'font2';


}





.home3 {
	padding: 200px 150px 200px 150px; 	background-image: linear-gradient(rgb(0,0,0,0.0), rgb(11,11,11,0.0)), url("/img/smart-home-1.jpg"); background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home3 h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}
.home3 p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
}
.home3 i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home3 hr {
	background: #c02026; height: 2px;
}
.home3 .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.home3 .padder:hover {
	padding: 25px; background: #0067b2; height: 100%; border: 1px solid #fff;
}
.home3 .padder:hover h3 {
	color: #fff;
}
.home3 .padder:hover p {
	color: #fff;
}
.home3 .padder:hover i {
	color: #fff;
}
.home4 {
	padding: 100px 00px 100px 25px; background: #f5f5f5;
}
.home4 .boxed {
	padding: 75px 5px 75px 15px; background: #fff;    border-radius: 25px;
}
.home4 h3 {
	font-size: 20px; font-family: font4; font-weight: 500; line-height: 50px; padding: 10px 5px 10px 5px; color: #444;
}
.home4 h3:hover {
	background: #4449; color: #0067b2;
}
.home4 p {
	color: #000; font-family: font2; font-weight: 600; font-size: 17px; line-height: 35px; text-align: center; margin-left: 35px; padding: 0px 35px 0px 35px;
}
.home4 h5 {
	font-family: font4; font-size: 35px; letter-spacing: 2px;
}
.home4 mark {
	padding: 15px; background: #c02026; font-family: monospace; color: #fff; font-size: 20px; margin-left: 15px;    border-radius: 15px;
}
.home4 mark:hover {
	box-shadow: 0px 0px 0px 15px #c02026; transition: .5s;
}
.home4 h6 {
    padding: 15px;
    background: #0067b2;
    font-family: monospace;
    color: #fff; border-radius: 15px;
    font-size: 20px;
    margin-left: 15px;
    margin-top: -13px;
    width: 75%;

}
.home4 h6:hover {
	box-shadow: 0px 0px 0px 15px #0067b2; transition: .5s;
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.home4 .pad {
	padding: 25px; position: absolute;  background: #0067b285; margin-top: 15px; margin-left: 275px;    border-radius: 25px;
	
	}
.home4  h2 {
	font-weight: 500; color: rgb(255,255,255); font-size: 35px; text-shadow: 0px 0px 5px #000; font-family: monospace; text-align: center; padding: 0px 0px 25px 0px;
}
.home4  h2 span {
	font-family: font4; font-size: 55px; padding: 0px 5px 0px 5px; 
}
.home4 .pad h4 {
	font-weight: 500; color: rgb(255,255,255); font-size: 25px; text-shadow: 0px 0px 5px #000; font-family: monospace; text-align: left; line-height: 50px;
}
.home4 .pad h4 span {
	color: #fff200; font-size: 30px;
}
.home4 .emergency {
	/*padding: 200px 0px 200px 35px;background: linear-gradient(90deg, rgba(0, 0, 0, 0) 18%, rgba(242, 242, 242, 1) 18%, rgba(255, 255, 255, 0.75) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/emergency-2.jpg);*/
	padding: 200px 0px 200px 35px;    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 18%, rgb(242 242 242 / 0%) 18%, rgb(255 255 255 / 0%) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/ele-1.jpg);    border-radius: 25px;
	
	
	
	background-size: cover; background-repeat: no-repeat; background-position: top; /*background-attachment: fixed;*/ height: 100%;
}
.my-class {
    -webkit-animation:name 7.5s infinite;
}

@keyframes name {
    0% {color:#fff;}
    20%{color:#fff}
	40% {color:#fff;}
	60% {color:#fff;}
	80% {color:#fff;}
	 100%{color:#0067b2}
}
.PULSE {
   /* Chrome, Safari, Opera */
  -webkit-animation: PULSE 3s infinite; 
  animation-delay: 5s;
  /* Internet Explorer */
  -ms-animation: PULSE 3s infinite;
  
  /* Standard Syntax */
  animation: PULSE 3.25s infinite; 
}

/* Chrome, Safari, Opera */
@-webkit-keyframes PULSE{
   0%{color:#0067b2;}	
	110%{color: black;}
}

/* Internet Explorer */
@-ms-keyframes PULSE{
   0%{color:#0067b2;}	
	110%{color: black;}
}

/* Standard Syntax */
@keyframes PULSE{
  0%{color:#0067b2;}		
	110%{color: black;}
}
.PULSE2 {
   /* Chrome, Safari, Opera */
  -webkit-animation: PULSE2 3s infinite; 
  animation-delay: 5s;
  /* Internet Explorer */
  -ms-animation: PULSE2 3s infinite;
  
  /* Standard Syntax */
  animation: PULSE2 3.25s infinite; 
}

/* Chrome, Safari, Opera */
@-webkit-keyframes PULSE2{
   0%{color:#0067b2;}	
	110%{color: black;}
}

/* Internet Explorer */
@-ms-keyframes PULSE2{
   0%{color:#0067b2;}	
	110%{color: black;}
}

/* Standard Syntax */
@keyframes PULSE2{
  0%{color:#0067b2;}		
	110%{color: black;}

}
.tooltip-text {
  visibility: hidden;
  position: absolute;
  z-index: 1;
  width: 600px;
  color: white;
  font-size: 17px;
  font-family: font2; font-weight: 600;
  background-color: #f54045;
  padding: 15px;
  margin-top: -35px;
}
.tooltip-text h4 {
	font-family: font4; font-size: 20px;
}
.hover-text:hover .tooltip-text {
  visibility: visible;
}

#top {
  top: -40px;
  left: -50%;
}

#bottom {
  top: 25px;
  left: -50%;
}

#left {
  top: -8px;
  right: 120%;
}

#right {
  top: -8px;
  left: 130%;
}

.hover-text {
  position: relative;
  display: inline-block;
  /*margin: 40px;*/
  font-family: Arial;
  text-align: center;
}



.video .pad p {
	margin-top: 0% !important; color: rgb(255,255,255); text-shadow: 0px 0px 5px #000; font-size: 20px; font-family: 'font2'; text-align: left; font-weight: 600; line-height:40px;
}
.video .pad a {
	font-size: 16px; color: rgb(255,255,255); font-family: 'Arial'; font-weight: 600; border: 1px solid rgb(12,32,63); padding: 15px 30px; border-radius: 1.6rem; background: rgb(12,32,63);
}
.video .pad a:hover {
	color: rgb(255,255,255); border: 1px solid rgb(255,255,255); background: transparent;
}
.video .pad  hr {
	background: #c02026; height: 2px;
}
.home-split1 {
	padding: 50px 0px 50px 0px; color: #c02026; text-align: center; background: linear-gradient(90deg, rgba(0,103,178,1) 0%, rgba(0,103,178,1) 50%, rgba(245,64,69,1) 50%, rgba(245,64,69,1) 100%); border: 5px solid #000;
}
.home-split1 h3 {
	font-family: font5; font-size: 50px;
}
.home-split1 h5 {
	font-size: 50px; font-weight: 300; color: #000;
}
.home-split1 h6 {
	font-family: 'font4'; letter-spacing: 2px; font-size: 20px; color: #000; text-transform: uppercase;
}
.home-split1 .liner {
	background: #fff; width: 10%;
}
.home-split1 .hexer {
  padding:  50px; box-shadow: 1px 1px 10px -2px #000; margin-top: -100px; margin-bottom: -100px; background: #fff; background-size: cover;
    min-height: auto;    border-radius: 25px;
    background-attachment: fixed; position: relative; z-index: 1; border: 7px solid #000;
}


.home-split-service {
	padding: 50px 0px 70px 0px; color: #c02026; text-align: center; background: #0067b2; border: 5px solid #000;
}
.home-split-service p {
	font-family: font5; font-size: 30px; color:white; font-weight:700;
}
.home-split-service h3 {
	font-family: font5; font-size: 50px;
}
.home-split-service h5 {
	font-size: 50px; font-weight: 300; color: #000;
}
.home-split-service h6 {
	font-family: 'font4'; letter-spacing: 2px; font-size: 20px; color: #000; text-transform: uppercase;
}
.home-split-service .liner {
	background: #fff; width: 10%;
}
.home-split-service a.blue {
	background: #fff; width: 100%; padding: 15px 5px; color: black; border: 2px solid red; border-radius: 14px;
    font-weight:700;
    /*width:auto;*/
    font-size: 14px;
	display: inline-block;
font-size: 1.65rem;
    padding: 15px 4px;	
}
.fill{
	background: #c02026 !important;
	color:white !important;
	border:none !important
}
/**** About Section ****/

.about1 {
	padding: 200px 0px 0px 0px;
}
.about1 .icon {
padding: 150px 150px 150px 250px;
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(11 11 11 / 0%)), url(/img/led-icon.png);
    background-repeat: no-repeat;
    background-size: 25%;
    min-height: auto;
    height: 100%;
    background-position: left;
}
.about1 h1 {
	font-family: font4; font-size: 50px;  margin-left: 50px; margin-right: -250px;
}
.about1  h2 {
	font-family: monospace; font-size: 35px; text-align: center;
	
}
.about1 h1 span {
	 font-size: 75px; color: #000;
}
.about1 h1 strong {
	color: #0067b2;
}
.about1 h2 span {
	color: #000; 
}
.about1 h2 strong {
	color: #0067b2;
}
.about1 h4 {
	    font-family: font4;
    font-size: 40px;
}
.about1  p {
	font-family: font2; font-size:17px; text-align: center; line-height: 35px; font-weight: 600;
}
.about1 hr {
	width: 93.5%;
    margin: 0px;
    background: #c02026;
    height: 5px;
    opacity: 100%;
    margin-bottom: -5px;
}
.about1 .cardy1 {
	    padding: 100px 35px 100px 150px;
/*background: linear-gradient(270deg, #ffffff80 0%, #ffffff80 20%, #ffffff80 20%, #ffffff80 33%, #ffffff80 50%, #ffffff80 64%, rgba(255, 255, 255, 0.5) 80%, #ffffff80 80%, #ffffff80 100%), url(/img/electrical-boom-1.jpg); border-top: 15px solid #c02026;*/
/*background: linear-gradient(270deg, #ffffff80 0%, #ffffff80 20%, #ffffff80 20%, #ffffff80 33%, #ffffff80 50%, #ffffff80 64%, rgba(255, 255, 255, 0.5) 80%, #ffffff80 80%, #ffffff80 100%), url(/img/elec-01.jpg); */
background: none;

        border-top: 15px solid #c02026;
        border-bottom: 15px solid #c02026;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: auto;
    height: 100%;
    background-position: top right;
}
.about1 .cardy2 {
padding: 75px 35px 125px 35px; background: linear-gradient(36deg, rgba(0, 0, 0, 0) 21%, rgba(192, 32, 38, 1) 21%, rgba(192, 32, 38, 1) 21.3%, rgb(255 255 255) 21.3%, rgb(255 255 255 / 82%) 56%, rgba(192, 32, 38, 1) 56%, rgba(192, 32, 38, 1) 56.3%, rgba(0, 0, 0, 0) 56.3%), url(/img/electrical-boom-2.jpg); background-repeat: no-repeat; background-size: cover; 
    min-height: auto; height: 100%;
    
    background-position: top right;
}
.about1 .cardy3 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy4 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy5 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy1 hr {
	background: #000; height: 2px;  margin: 1rem 0; opacity: .25; width: 100%;
}
.about1 .popper {
	padding: 25px; margin-left: 100px;
	 margin-right: -100px;
}
.about1  .popper2 {
	padding: 25px; 
}
.about1  .popper3 {
	    margin-top: 620px;
    margin-left: -105px;
    margin-right: 105px;

}
.about1 img {
	max-width: 75%; margin-bottom: 50px;
}


.about-reasons{
	padding: 50px 0;
	background: #0067b2;
	color: white;
	text-align: center;
}
.about-reasons h2 {
	font-family: font4; font-size: 47px;  margin-left: 0; margin-right: 0;
}
.about-reasons  h3 {
	font-family: monospace; font-size: 40px; text-align: center; font-weight: 700;
	
}
.about-reasons  p {
	font-family: font2; font-size:17px; text-align: center; line-height: 35px; font-weight: 600;
	padding-bottom: 30px; 
	
}

/**** Services Section ****/
.electric-services {
	box-shadow: 1px 1px 10px 3px #000;
}
.electric-services h1 {
	font-family: 'font4'; font-weight: 500; font-size: 65px; letter-spacing: 3px; color: #c02026; text-shadow: 1px 1px 1px #444; line-height: 80px;
}
.electric-services h1 span {
	font-size: 45px; font-family: 'font2'; font-weight:600; line-height: 50px;
}
.electric-services h2 {
	font-family: 'font2'; font-weight: 600; font-size: 35px; letter-spacing: 3px; text-transform: uppercase;
}
.electric-services h3 {
	font-family: 'font5'; font-weight: 500; font-size: 17px; letter-spacing: 3px; background: linear-gradient(90deg, rgba(51,108,133,1) 0%, rgba(133,169,186,1) 25%, #9dc6d9 50%, rgba(133,169,186,1) 75%, rgba(51,108,133,1) 100%);
    padding: 25px 10px 25px 10px;
    margin-top: -50px;
    margin-bottom: 0px;
    width: 110%; color: #fff;
    margin-right: 50px;
    margin-left: -100px;
    box-shadow: 1px 1px 5px 3px #000; text-align: center;
}
.electric-services h3 span {
	font-size: 17px; font-family: 'font2'; font-weight:600;
}
.electric-services p {
	font-size: 17px; font-family: 'font2'; line-height: 35px; 
}
.electric-services mark {
	padding: 15px;
    font-size: 20px;
    font-family: 'font2';
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #444;
    background: #6c98ac94;
}
.electric-services mark:hover {
	background: #6c98ac; color: #fff; text-shadow: 1px 1px 3px #000;
}
.electric-services a {
	color: inherit;
}
 .boxer {
	padding: 75px 50px 75px 50px; background: #fff9; /*box-shadow: 1px 1px 10px 3px #000;*/
}
 .boxer-2 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-2:hover {
	    background: #9dc6d9; color: #fff;
}
.boxer-2:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
.boxer-2:hover p {
	text-shadow: 3px 3px 7px #444;
}
 .boxer-3 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-3:hover {
	    background: #6c98ac; color: #fff;
}
.boxer-3:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
 .boxer-4 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-4:hover {
	    background: #44788f; color: #fff;
}
.boxer-4:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
.parallax-service-1 {
    background: linear-gradient(270deg, #0067b2a3 0%, #0067b2a3 20%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 0.9092978255755427) 50%, rgba(255, 255, 255, 1) 64%, rgba(255, 255, 255, 0.5) 80%, rgba(192, 32, 38, 0.5) 80%, rgba(192, 32, 38, 0.5) 100%), url(/img/electrical-4-new.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 350px 25px 300px 25px;
  background-repeat: no-repeat;
  background-size: cover;
} 
.residential-electrical {
	padding: 150px 0px 150px 50px; background: #6c98ac; 
}
.parallax-service-2 {
  background: #f5f5f5;
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 110px 20px 200px 2px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.parallax-service-2 h2 {
	font-size: 50px; font-family: 'font4';  color: #0067b2; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 25px;
}
.parallax-service-2 p {
	font-size: 17px; line-height: 35px; font-family: 'font2'; margin: 0px 35px 0px 35px;
	font-weight: 900; 
}
.parallax-service-2 hr {
	height: 5px; background: #f54045;
}
.parallax-service-2 li {
	font-family: monospace; font-size: 20px; letter-spacing: 1px; line-height: 60px; list-style-type: '☑'; 
}
.parallax-service-2 img {
	/*margin-top: -200px;*/
	margin-top: -00px;
}
.parallax-service-3 {
 background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-inspection-1.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 0px 150px 0px;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-service-3 h2 {
	font-size: 25px; font-family: 'font5'; text-align: left; color: #6c98ac; letter-spacing: 3px; text-shadow: 1px 1px 1px #000; padding-bottom: 25px;
}
.parallax-service-3 p {
	font-size: 17px; line-height: 35px; font-family: 'font2';
}
.parallax-service-3 img {
	box-shadow: 1px 1px 10px 3px #000; max-width: 75%; margin-top: 50px; margin-left: 75px;
}
.parallax-service-4 {
 background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-generator-1.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 25px 150px 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-service-4 h2 {
	font-size: 25px; font-family: 'font5'; text-align: left; color: #6c98ac; letter-spacing: 3px; text-shadow: 1px 1px 1px #000; padding-bottom: 25px;
}
.parallax-service-4 p {
	font-size: 17px; line-height: 35px; font-family: 'font2';
}
.parallax-service-4 img {
	box-shadow: 1px 1px 10px 3px #000; max-width: 75%; margin-top: 50px; margin-right: 75px;
}
.tab {
       overflow: visible;
    background-color: #fff;
    font-family: 'font2';
    display: grid;
    border-right: none;
    border-top: none;
    height: auto;
	    margin-top: 24px;
	    /*margin-top: 100px;*/
    margin-bottom: -24px; margin-left: 5px;
}
.tab button {
  background-color: inherit; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px; font-family: 'font2'; text-align: left; line-height: 35px;
}
.tab button:hover {
  background-color: #c0202694; color: #fff;
}
.tab button.active {
  background-color: #0067b2; color: #fff;
}
.tab2 {
  overflow: hidden; background-color: #fff; font-family: 'font2'; display: inline-grid; height: 100%;  height: 575px; border: 5px solid #c02026; border-left: none;
}
.tab2 button {
  background-color: inherit; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px; font-family: 'font2'; text-align: left; line-height: 35px;
}
.tab2 button:hover {
  background-color: #c0202694; color: #fff;
}
.tab2 button.active {
  background-color: #c02026; color: #fff;
}
.tabcontent {
  display: none; padding: 90px 50px 50px 50px; background: #fff;

  /*height: 100%;*/
  height: 600px;
  box-shadow: 25px -25px 0px 0px #0067b2;
  margin-top:100px;
}
.tabcontent h3 {
	padding-top: 20px; padding-bottom: 20px; font-family: 'font4';	text-align: left;	font-size: 25px; color: #0067b2; letter-spacing: 3px; font-weight: 600;
}
.tabcontent p {
	font-family: font2; font-weight: 600; font-size: 17px; line-height: 35px;
}
.tabcontent img {
 box-shadow: 1px 1px 10px 1px #000;margin-top: -50px;
}
.cardy-1 {
	background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgb(255 255 255 / 85%) 25%, rgba(170,195,207,0.61237905806854) 50%, rgba(133,169,186,0.7832474054074755) 75%, rgba(51,108,133,0.9149000664719013) 100%); padding: 50px 25px 50px 25px; box-shadow: 1px 1px 10px 3px #000;
}
.cardy-2 {
	background: linear-gradient(1deg, rgba(255,255,255,1) 0%, rgb(255 255 255 / 85%) 25%, rgba(170,195,207,0.61237905806854) 50%, rgba(133,169,186,0.7832474054074755) 75%, rgba(51,108,133,0.9149000664719013) 100%); padding: 50px 25px 50px 25px; box-shadow: 1px 1px 10px 3px #000;
}
.home-splitter {
	background:  #c02026; padding: 50px; text-align: center;
}
.home-splitter h2 {
	font-family: monospace;  color: #fff; font-size: 35px; color: #fff; letter-spacing: 2px;
}
.home-splitter mark {
	background: #fff; border-radius: 7px; color: #c02026; padding: 10px; font-size: 20px; font-family: 'font2'; font-weight: 600; text-transform: uppercase; border: 7px double #c02026; 
}
.home-splitter mark:hover {
	box-shadow: 1px 1px 5px 1px #000;
}
.home-splitter p {
	line-height: 35px; font-size: 17px; font-family: 'font2'; color: #fff;
}
.home-splitter hr {
	background: #fff;
}







/*COMMERCIAL ELECTRICAL*/
.commercial-slider {
	box-shadow: 1px 1px 10px 3px #000;
	height:100vh;
	
	position:relative; 
    background: url(/img/led-gallery/led-gallery-3.jpeg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 350px 25px 300px 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-commercial {
    background: url(/img/led-gallery/led-gallery-3.jpeg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 350px 25px 300px 25px;
  background-repeat: no-repeat;
  background-size: cover;
} 
.commercial-slider h1 {
	font-family: 'font4'; font-weight: 500; font-size: 3rem; letter-spacing: 3px; color:white;; text-shadow: 1px 1px 1px #444; line-height: 55px;
}
.commercial-slider h1 span {
	font-size: 2.5rem; font-family: 'font2'; font-weight:600; line-height: 35px;
}
.commercial-slider h2 {
	font-family: 'font2'; font-weight: 600; font-size: 35px; letter-spacing: 3px; text-transform: uppercase;
}
.commercial-slider h3 {
	font-family: 'font5'; font-weight: 500; font-size: 17px; letter-spacing: 3px; background: linear-gradient(90deg, rgba(51,108,133,1) 0%, rgba(133,169,186,1) 25%, #9dc6d9 50%, rgba(133,169,186,1) 75%, rgba(51,108,133,1) 100%);
    padding: 25px 10px 25px 10px;
    margin-top: -50px;
    margin-bottom: 0px;
    width: 110%; color: #fff;
    margin-right: 50px;
    margin-left: -100px;
    box-shadow: 1px 1px 5px 3px #000; text-align: center;
}
.commercial-slider h3 span {
	font-size: 17px; font-family: 'font2'; font-weight:600;
}
.commercial-slider p {
	font-size: 17px; font-family: 'font2'; line-height: 35px; 
}
.commercial-slider mark {
	padding: 15px;
    font-size: 20px;
    font-family: 'font2';
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #444;
    background: #6c98ac94;
}
.commercial-slider mark:hover {
	background: #6c98ac; color: #fff; text-shadow: 1px 1px 3px #000;
}
.commercial-slider a {
	color: inherit;
}

.commercial-slider .float-absolute{
    position: absolute;
    top: 50%;
    left: 10%;
    padding: 20px;
}

.commercial-slider .slide-floater{
    background: rgb(0 103 178 / 70%);
    padding: 20px;
    box-shadow: 1px 1px 6px black;
}
.commercial-slider .slide-bottom{

    display: inline-flex;
    justify-content: space-around;
    gap: 3rem;
    width: 100%;
    padding: 20px 0;
    background: rgb(4 62 104 / 80%);
}
.commercial-slider .slide-bottom a.link-btn{

    padding: 10px;
    background: #c02026d1;
    font-family: 'font2';
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
	border: 2px solid #c02026d1;
}
.commercial-slider .slide-bottom a.link-btn:hover{

    background: white;;
    color: #c02026d1;
	
}


.commercial-body{
	padding: 150px 15px 150px 15px;
  background-repeat: no-repeat;
  background-size: cover;
}
.commercial-body h1 {
	font-family: 'font4'; font-weight: 500; font-size: 65px; letter-spacing: 3px; color: #c02026; text-shadow: 1px 1px 1px #444; line-height: 80px;
}
.commercial-body h1 span {
	font-size: 45px; font-family: 'font2'; font-weight:600; line-height: 50px;
}
.commercial-body h2 {
	font-family: 'font2'; font-weight: 900; font-size: 35px; letter-spacing: 3px; text-transform: uppercase;
}
.commercial-body .subtitle{
	    font-size: 1rem;
    font-weight: 700;
    color: rgb(0 103 178 / 100%);
    text-decoration: underline;
}
.commercial-body h3 {
	font-family: 'font2'; font-weight: 600; font-size: 2rem; letter-spacing: 3px; text-transform: uppercase;

}
.commercial-body h3 span {
	font-size: 17px; font-family: 'font2'; font-weight:600;
}
.commercial-body p {
	font-size: 17px; font-family: 'font2'; line-height: 35px; 
}
.commercial-body mark {
	padding: 15px;
    font-size: 20px;
    font-family: 'font2';
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #444;
    background: #6c98ac94;
}
.commercial-body mark:hover {
	background: #6c98ac; color: #fff; text-shadow: 1px 1px 3px #000;
}
.commercial-body a {
	color: inherit;
}

.commercial-body img{
	    box-shadow: 4px 4px 6px black;
}



.commercial-service {
	background: #f5f5f5;
	
	
	padding: 150px 0; 
}
.commercial-service .row {
	    --bs-gutter-x: 0;
}
.commercial-service .container-fluid {
		padding-left:0;
		padding-right: 0; 
}

.commercial-service h2.service-header {
    font-family: 'font2';
    font-size: 3rem;
    text-align: center;
    line-height: 36px;
    /*color: rgb(246,177,24);*/
    color: rgb(136, 24, 27);
    text-shadow: 1px 1px 1px #000;
				margin-bottom:50px; 

				
						transform: translateY(50%);
		opacity: 1; 
	transition: 2s; 
}

.commercial-service h2.service-header.show-header {

		transform: translateY(0);
		
		opacity: 1; 
		
}
 
.commercial-service p {
	font-size: 16px; font-family: font2; line-height: 35px; font-weight: 600;
}

.commercial-service .boxer1 {
 padding: 125px 15px 125px 15px; background: linear-gradient(90deg, rgba(29,54,68,0.67) 0%, rgba(29,54,68,0.67) 100%);
    background-size: 100%; text-align: center; background-position: center; color: #f5f5f5; text-shadow: 1px 1px 1px #000;
	
	position:relative;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; 
height: 500px;
}
.commercial-service .boxer1 p{
	/*color: transparent;*/
	
	transition: 0.5s;
	opacity: 0;
	font-size: 1.3rem;
	font-weight: 700; 
}


.commercial-service .boxer1:hover p{
	/*color: black;;*/
	opacity: 1;
	
}
.commercial-service .boxer2 {
  padding: 125px 0;
  text-align: center;
  /*background-position: bottom;*/
		
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*height: 500px;*/
height: 60vh;
margin: 0 15px;
  color: white;
  position: relative;
  transition: 0.5s;
  overflow: hidden;
}

.commercial-service .boxer2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgb(0 0 0 / 60%), rgb(255 255 255 / 40%));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.commercial-service .boxer2:hover::before {
  opacity: 1;
}

.commercial-service .boxer2 h3 {
  font-family: 'font2';
  font-size: 25px;
  font-weight: 300;
  position: absolute;
  transition: 0.8s;
		color: white; 
  z-index: 1; /* ensures above overlay */
}

/* Scope p and a tags within .p-container specifically */
.commercial-service .boxer2 .p-container {
  position: absolute;
  transform: translateY(20%);
  transition: 0.8s ease-in-out;
  opacity: 0;
  z-index: 1; /* ensures above overlay */
		
		
    padding: 0 20px;
		
}

.commercial-service .boxer2 .p-container p {
  transition: 0.8s;
  opacity: 0;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}

.commercial-service .boxer2 .p-container .detail-wrapper {
	/*width:200px;*/
	
	position:relative;
}

.p-container .detail-wrapper a.detail-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 300;
  text-decoration: underline;
  color: inherit;
  transition: 0.8s;
		font-size:1.2rem;
  font-family: 'font2';

		
}
.p-container .detail-wrapper:hover a.detail-link {
    color: rgb(0 103 178 / 90%);
		
}
.p-container .detail-wrapper:after {
  content: '';
  position: absolute;
  top: 102%;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 60%;
  
  background: linear-gradient(45deg, #88181ba3 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  
  transition: background-position 0.5s ease-out;
}

.p-container .detail-wrapper:hover:after {
  background-position: left bottom;
}

/* Hover Effects */
.commercial-service .boxer2:hover .p-container {
  transform: translateY(0%);
  opacity: 1;
}

.commercial-service .boxer2:hover .p-container p {
  opacity: 1;
}

.commercial-service .boxer2:hover h3 {
  transform: translateY(-530%);
		
		/*color: #c02026;*/
		color: white;
 
}

.commercial-service .boxer2:hover {
  /*height: 105%;*/
height: 60vh;

  box-shadow: 0px 3px 10px black;
  transform: translateY(-15px);
}

.residential-bg{
	background: linear-gradient(rgb(255 255 255 / 0%), rgb(0 0 0 / 79%)), url(/img/homepage/residential-roofing-1.jpg);
	background-size: cover;
	transition:2s;
	background-position:50% 50%;
}
.commercial-bg{
	background: linear-gradient(rgb(255 255 255 / 0%), rgb(0 0 0 / 79%)), url(/img/homepage/commercial-roofing-1.png);
	background-size: cover; 
	background-position:50% 50%;

}
.estimate-bg{
	background: linear-gradient(rgb(255 255 255 / 0%), rgb(0 0 0 / 79%)), url(/img/homepage/00017.jpg);
	background-size: cover; 
	background-position:50% 50%;

}
.insurance-bg{
	background: linear-gradient(rgb(255 255 255 / 0%), rgb(0 0 0 / 79%)), url(/img/homepage/roof-claims-1.jpg);
	background-size: cover; 
	background-position:50% 50%;

}



.commercial-extended {
	    background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/homepage/pattern10.png);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
}
.commercial-extended .container-fluid {
	padding: 0px;
}
.commercial-extended .row {
	    --bs-gutter-x: 0;
}
.commercial-extended h2 {
    font-family: font2;
    font-weight: 600;
    font-size: 3rem;
    text-align: left;
    /*cursor: pointer;*/
    color: white;
}
.commercial-extended p {
    font-family: 'font2';
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    /*cursor: pointer;*/
    color: white;
}
.commercial-extended .subtitle{
	    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-decoration: underline;
}
.commercial-extended h2 span {
	color: #118652;
}
.commercial-extended h3 {
	font-family: font2; font-size: 18px; text-decoration: underline;color: #118652;
}
.commercial-extended h4 {
	font-family: font2; font-size: 23px;
}
.commercial-extended p {
	font-family: font2; font-size: 17px; line-height: 35px;
}
.commercial-extended li {
	font-family: font2; font-size: 15px; line-height: 30px;
}
.commercial-extended a.link-btn {
    font-family: font2;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    padding: 10px;
    background: rgba(192, 32, 38, 0.82);
	width: max-content;
}
.commercial-extended .phase1 {
	
}
.commercial-extended .phase1 hr {
	width: 65%; height: 2px; background: #118652;
}
.commercial-extended .phase1 .info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    background-size: cover;
    height: 800px;
    background: rgb(0 103 178 / 90%);

}
.commercial-extended .phase1 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/ss-01.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/commercial-electric-001.jpg);
    background-size: cover; height: 800px;
    background-repeat: no-repeat;
}
.commercial-extended .phase2 {
	
}
.commercial-extended .phase2 hr {
	width: 65%; height: 2px; background: #118652;
}
.commercial-extended .phase2 .info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    background-size: cover;
    height: 800px;
    background: rgb(0 103 178 / 90%);

}
.commercial-extended .phase2 .imagery {
	 /*background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/sprinkler-systems/step-002.jpg);*/
	 background: linear-gradient(0deg, #00000000 25%, #00000000 90%), url(/img/services/commercial-electric-002.jpg);
    background-size: cover; height: 800px;
    background-repeat: no-repeat;
}
 


/*Indoor Lighting Page*/
.indoor-lighting-services {
	box-shadow: 1px 1px 10px 3px #000;
}
.indoor-lighting-services h1 {
	font-family: 'font4'; font-weight: 500; font-size: 65px; letter-spacing: 3px; color: #c02026; text-shadow: 1px 1px 1px #444; line-height: 80px;
}
.indoor-lighting-services h1 span {
	font-size: 45px; font-family: 'font2'; font-weight:600; line-height: 50px;
}
.indoor-lighting-services h2 {
	font-family: 'font2'; font-weight: 600; font-size: 35px; letter-spacing: 3px; text-transform: uppercase;
}
.indoor-lighting-services h3 {
	font-family: 'font5'; font-weight: 500; font-size: 17px; letter-spacing: 3px; background: linear-gradient(90deg, rgba(51,108,133,1) 0%, rgba(133,169,186,1) 25%, #9dc6d9 50%, rgba(133,169,186,1) 75%, rgba(51,108,133,1) 100%);
    padding: 25px 10px 25px 10px;
    margin-top: -50px;
    margin-bottom: 0px;
    width: 110%; color: #fff;
    margin-right: 50px;
    margin-left: -100px;
    box-shadow: 1px 1px 5px 3px #000; text-align: center;
}
.indoor-lighting-services h3 span {
	font-size: 17px; font-family: 'font2'; font-weight:600;
}
.indoor-lighting-services p {
	font-size: 17px; font-family: 'font2'; line-height: 35px; 
}
.indoor-lighting-services mark {
	padding: 15px;
    font-size: 20px;
    font-family: 'font2';
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #444;
    background: #6c98ac94;
}
.indoor-lighting-services mark:hover {
	background: #6c98ac; color: #fff; text-shadow: 1px 1px 3px #000;
}
.indoor-lighting-services a {
	color: inherit;
}
.indoor-lighting-services .parallax-service-1 {
    background: linear-gradient(270deg, #0067b2a3 0%, #0067b2a3 20%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 0.9092978255755427) 50%, rgba(255, 255, 255, 1) 64%, rgba(255, 255, 255, 0.5) 80%, rgba(192, 32, 38, 0.5) 80%, rgba(192, 32, 38, 0.5) 100%), url(/img/led-gallery/led-gallery-10.jpeg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 350px 25px 300px 25px;
  background-repeat: no-repeat;
  background-size: cover;
} 
/*Indoor Lighting Page END*/


/*PANELS PAGE*/
.electrical-remodeling{
  background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.5) 10%, rgba(255,255,255,1) 34%, rgba(255,255,255,0.9092978255755427) 50%, rgba(255,255,255,1) 64%, rgba(255,255,255,0.5) 100%, rgba(192,32,38,0.5) 80%, rgba(192,32,38,0.5) 100%), url("/img/electrical-remodeling-bg.jpg") !important;

}
.panels-section {
  /*background: #f5f5f5;*/
  
  background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.5) 10%, rgba(255,255,255,1) 34%, rgba(255,255,255,0.9092978255755427) 50%, rgba(255,255,255,1) 64%, rgba(255,255,255,0.5) 100%, rgba(192,32,38,0.5) 80%, rgba(192,32,38,0.5) 100%), url("/img/panels-001.png");
  min-height: auto;
  background-attachment: fixed;
  background-position: center center;
	overflow: hidden;
	padding: 250px 20px 150px 2px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.panels-section h1 {
	font-size: 50px; font-family: 'font4';  color: #0067b2; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 25px;
	text-align: center;
}

.panels-section span {
    font-weight: 900;
    text-decoration: underline;
    text-shadow: 0 0 black;
}
.panels-section h2 {
	font-weight: 700;
	text-align:center;
	font-size: 1.65rem;
}
.panels-section h3 {
	font-weight: 700;
	text-align:center;
	font-size: 1.65rem;
}
.panels-section h4 {
	font-weight: 700;
	text-align:center;
	font-size: 1.4rem;
}
.panels-section p {
	font-size: 17px; line-height: 35px; font-family: 'font2'; margin: 0px 50px 0px 50px; font-weight: bold;
}
.panels-section hr {
	height: 5px; background: #f54045;
}
.panels-section .pad {
	padding:45px 10px;
	background: white;
	border: 2px solid #0067b2;
}
.panels-section .red {

	background: #c02026;
	color: white;
}
.panels-section .blue {

	background: #0067b2;
	color: white;
}
.panels-section li {
	font-family: monospace; font-size: 20px; letter-spacing: 1px; line-height: 60px; list-style-type: '☑'; 
}
.panels-section li p{
	font-size:1.2rem;
}
.panels-section li p span{
	font-size:1.3rem; font-weight: 900; text-decoration:underline;
}
.panels-section img {
	margin-top: -200px;
}


/**/
/**/
.panels-section-general {
  /*background: #f5f5f5;*/
  
  background: white;
  min-height: auto;
  background-attachment: fixed;
  background-position: center center;
	overflow: hidden;
	padding: 150px 20px 150px 2px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.panels-section-general h1 {
	font-size: 50px; font-family: 'font4';  color: #0067b2; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 25px;
	text-align: center;
}

.panels-section-general span {
    font-weight: 900;
    text-decoration: underline;
    text-shadow: 0 0 black;
}
.panels-section-general h2.main-title {
	font-weight: 700;
    font-size: 50px;
    font-family: 'font4';
    color: #c02026;
	text-align:center;
	font-size: 2.5rem;
}
.panels-section-general h2 {
	font-weight: 700;
	text-align:center;
	font-size: 1.65rem;
}
.panels-section-general h3 {
	font-weight: 700;
	text-align:center;
	font-size: 1.65rem;
}
.panels-section-general h4 {
	font-weight: 700;
	text-align:center;
	font-size: 1.4rem;
}
.panels-section-general p {
	font-size: 17px; line-height: 35px; font-family: 'font2'; margin: 0px 50px 0px 50px; font-weight: bold;
}
.panels-section-general hr {
	height: 5px; background: #f54045;
}
.panels-section-general .pad {
	padding:45px 10px;
	background: white;
	border: 2px solid #0067b2;
}
.panels-section-general .red {

	background: #c02026;
	color: white;
}
.panels-section-general .blue {

	background: #0067b2;
	color: white;
}
.panels-section-general li {
	font-family: monospace; font-size: 20px; letter-spacing: 1px; line-height: 60px; list-style-type: '☑'; 
}
.panels-section-general li p{
	font-size:1.2rem;
}
.panels-section-general li p span{
	font-size:1.3rem; font-weight: 900; text-decoration:underline;
}
.panels-section-general img {
	margin-top: -0px;
}
/*PANELS PAGE END*/



.electrical-panels-section {
  /*background: #f5f5f5;*/
  
  background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.5) 10%, rgba(255,255,255,1) 34%, rgba(255,255,255,0.9092978255755427) 50%, rgba(255,255,255,1) 64%, rgba(255,255,255,0.5) 100%, rgba(192,32,38,0.5) 80%, rgba(192,32,38,0.5) 100%), url("/img/led-gallery/led-gallery-27.jpeg");
  min-height: auto;
  background-attachment: fixed;
  background-position: center center;
	overflow: hidden;
	padding: 250px 20px 150px 2px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.electrical-panels-section h1 {
	font-size: 50px; font-family: 'font4';  color: #0067b2; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 25px;
	text-align: center;
}

.electrical-panels-section span {
    font-weight: 900;
    text-decoration: underline;
    text-shadow: 0 0 black;
}
.electrical-panels-section h2 {
	font-weight: 700;
	text-align:center;
	font-size: 1.65rem;
}
.electrical-panels-section h3 {
	font-weight: 700;
	text-align:center;
	font-size: 1.65rem;
}
.electrical-panels-section h4 {
	font-weight: 700;
	text-align:center;
	font-size: 1.4rem;
}
.electrical-panels-section p {
	font-size: 17px; line-height: 35px; font-family: 'font2'; margin: 0px 50px 0px 50px; font-weight: bold;
}
.electrical-panels-section hr {
	height: 5px; background: #f54045;
}
.electrical-panels-section .pad {
	padding:45px 10px;
	background: white;
	border: 2px solid #0067b2;
}
.electrical-panels-section .red {

	background: #c02026;
	color: white;
}
.electrical-panels-section .blue {

	background: #0067b2;
	color: white;
}
.electrical-panels-section li {
	font-family: monospace; font-size: 20px; letter-spacing: 1px; line-height: 60px; list-style-type: '☑'; 
}
.electrical-panels-section li p{
	font-size:1.2rem;
}
.electrical-panels-section li p span{
	font-size:1.3rem; font-weight: 900; text-decoration:underline;
}
.electrical-panels-section img {
	margin-top: -0;
}

.service{
	
	opacity: 0;
	transition:0.7s;
	
}
.service.show-more{
	opacity: 1; 

}



/**** Process Page ****/ 
.process {
	padding: 340px 0 340px 0;
	background: rgb(255,255,255);
}
.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: 'font4';
	font-size: 35px;
	text-align: center;
	font-weight: 900;
	color: rgb(194,3,16);
}
.process h2 {
    font-family: 'font4';
	font-size: 25px;
	text-align: center;
	font-weight: 900;
	padding-bottom: 30px;
	color: rgb(110,110,110);
}
.process h3.card-title {
    font-family: 'font4';
	font-size: 1.3rem;;
	text-align: center;
	font-weight: 900;
	padding-bottom: 10px;
	color: #0067b2;

}
.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: 19px;
	text-align: justify;
	font-family: 'font2';
	color: rgb(110,110,110);
}
.process li {
	font-size: 19px;
	font-family: 'font2';
	color: rgb(110,110,110);
}
.process strong {
	color: rgb(194,3,16);
	font-family: 'font2';
}





/*FINANCING PAGE*/
.financing-section {
  background: #f5f5f5;
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 20px 150px 2px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.financing-section h2 {
	font-size: 50px; font-family: 'font4';  color: #0067b2; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 25px;
	text-align: center;
}
.financing-section h3 {
	font-weight: 700;
	text-align:center;
}
.financing-section p {
	font-size: 17px; line-height: 35px; font-family: 'font2'; margin: 0px 50px 0px 50px; font-weight: bold;
}
.financing-section hr {
	height: 5px; background: #f54045;
}
.financing-section .pad {
	padding:45px 10px;
	background: white;
	border: 2px solid #0067b2;
}
.financing-section li {
	font-family: monospace; font-size: 20px; letter-spacing: 1px; line-height: 60px; list-style-type: '☑'; 
}
.financing-section li p{
	font-size:1.2rem;
}
.financing-section li p span{
	font-size:1.3rem; font-weight: 900; text-decoration:underline;
}
.financing-section img {
	margin-top: -200px;
}
/*FINANCING PAGE END*/

/**** Blog Section ****/
.crumb2 {
	background: rgb(255,255,255); padding: 25px 0 15px 0;
}
.crumb2 h5 {
	font-family: 'century-gothic'; color: rgb(0,0,0); font-weight: 600; font-size: 16px;
}
.crumb2 span {
	color: rgb(21,135,198);
}
.offers {
	padding: 125px 0 75px 0; background: rgb(255,255,255);
}
.offers h1 {
	text-align: center; font-weight: 600; font-family: 'font4'; padding-bottom: 25px; color: rgb(12,12,12); font-size: 45px;
}
.offers h3 {
	font-family: 'font4'; font-size: 30px; font-weight: 600; letter-spacing: 0.04rem; text-align: center; padding-bottom: 10px; color: rgb(0,0,0);
}
.offers h4 {
	font-weight: 600; font-family: 'font4'; font-size: 19px; color: rgb(30,30,30); letter-spacing: 0.12rem; text-align:center;
}
.offers h5 {
	font-family: 'font4'; color: rgb(20,20,20); font-size: 15px;
}
.offers hr {
	/*border: 0.15rem solid rgb(21,135,198); max-width: 110px; opacity: 1; color: rgb(21,135,198); margin: auto;*/
}
.offers .box {
	padding: 0px 0px 20px 0px; background: rgb(255,255,255); box-shadow: 0 0 15px #00000029;     height: 470px;
	border-radius: 15px; 
}
.offers .pad {
	height: 280px; padding: 15px 10px 0px 10px;
}
.offers .pad hr{
    border: 0.08rem solid rgb(21,135,198);
    max-width: auto;
    opacity: 1;
    color: rgb(21,135,198);
    margin: auto;
}
.offers .pad2 {
	padding: 15px 10px 0px 10px; height: 55px;
}
.offers span {
	color: rgb(21,135,198);
}
.offers p {
	font-family: 'font4'; color: rgb(20,20,20); font-size: 15px; text-align: center; padding-top:15px;
}
.offers p.tagline {
	font-family: 'font4'; color: rgb(20,20,20); font-size: 15px; text-align: justify; font-weight: 200; text-align:center;
}
.offers a {
	display: grid; width:75%; color: white; font-size: 15px; font-family: 'font4'; font-weight: 600; padding:10px; background:rgb(21,135,198); border-radius: 15px; 
}
.offers a:hover {
	color: none;
}


/*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: rgb(210,40,40);
	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: rgb(210,40,40);
}
.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: #0067b2;
    padding: 170px 0 120px 0;
}
.blog-top .box {
	padding: 10px 45px 0px 50px;
}
.blog-top h1 {
	color: white;  font-family: 'font4'; letter-spacing: 0.20rem; font-weight: 600; font-size: 30px; text-align: center;
}
.blog-top h5 {
	color: rgb(100,100,100); font-family: 'font4'; text-align: center; font-size: 15px;
}
.blog-top p {
	color: rgb(100,100,100); font-family: 'font4'; font-size: 17px; text-align: center;
}
.blog-top a {
	color: rgb(21,135,198); padding: 10px 60px; text-transform: uppercase; letter-spacing: 0.04rem; font-weight: 600; font-size: 15px; font-family: 'font4'; 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-top img {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 3px rgb(0,0,0);
}
.crumb-blog {
	background: rgb(255,255,255); padding: 0;
}
.crumb-blog hr {
	background: rgb(100,100,100); border: 1px solid rgb(100,100,100);
}
.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: 'font4'; text-align: justify; font-weight: 300; color: rgb(80,80,80);
}
.blog-template h1 {
	color: rgb(20,20,20); text-align: left; font-weight: 600; font-family: 'font4'; font-size: 35px;
}
.blog-template h2 {
	font-family: 'font4'; color: rgb(20,20,20); font-size: 23px;
}
.blog-template h2.headline {
	color: rgb(20,20,20); text-align: left; font-weight: 600; font-family: 'font4'; font-size: 18px; text-decoration: underline; 
}
.blog-template h3 {
	font-family: 'font4'; font-weight: 600; color: rgb(21,135,198); font-size: 25px;
}
.blog-template h4 {
	color: rgb(20,20,20); text-align: left; font-weight: 600; font-family: 'font4'; font-size: 35px;
}
.blog-template h5 {
	font-family: 'font4'; font-weight: 600; color: rgb(20,20,20); font-size: 25px;
}
.blog-template h6 {
	font-size: 23px; font-family: 'font4'; font-weight: 600; color: rgb(0,0,0);
}
.blog-template p {
	color: rgb(100,100,100); font-family: 'font4'; text-align: justify; font-weight: 300;
}
.blog-template li {
	color: rgb(20,20,20); font-size: 17px; font-family: 'font4';
}
.box-link {
	display: inline-block; right:0;
}
.box-link a {
	display: inline-block; text-align: right;
}
.box-link p{
	text-align: right;
}
.box-link ul{
	list-style: none;
}
.box-link li{
	display: inline-block; margin-right: 10px; /* add spacing between items */
}


/**** Gallery Section ****/
.gallery-page {
	padding: 110px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}
.gallery-page h2{
	font-size: 1.3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 10px; text-align: center; color: rgb(129,141,148);
}
/**** Areas We Service Section ****/
.area:nth-child(odd) {
	padding: 125px 0 125px 0; 
}
.area:nth-child(even) {
	padding: 125px 0 125px 0; 
}
.area h1 {
	font-size: 2.85rem; font-family: monospace; font-weight: 800; color: #0067b2;
	text-align: center;
}
.area h2 {
	font-size: 2.5rem; font-family: monospace; font-weight: 800; color: rgb(196,41,56);
}
.area h4 {
	font-size: 1.5rem; font-family: monospace; color: rgb(75,75,75);
}
.area p {
	/*font-size: 17px; text-align: justify; color: rgb(12,12,12);*/
	
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 0;
}
.area iframe {
	width: 100%; height: 350px; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px #0067b2;
}

.area a {
	padding: 15px;
	background: #0067b2;
	color: white;
	font-weight: 700;
	font-family: monospace;
	box-shadow: 0px 2px 5px black;
	
}
.area a:hover {
	background: white;
	color:  #0067b2;
 
}

.bg-white {
    background: rgb(255, 255, 255);
}

.bg-gray {
    background: rgb(245, 245, 245);
}



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


.service-area-section h1 {
	font-size: 2.85rem; font-family: monospace; font-weight: 800; color: #0067b2;
	text-align: center;
}
.service-area-section h2 {
	font-size: 2.5rem; font-family: monospace; font-weight: 800; color: rgb(196,41,56);
}
.service-area-section h4 {
	font-size: 1.5rem; font-family: monospace; color: rgb(75,75,75);
}
.service-area-section p {
	/*font-size: 17px; text-align: justify; color: rgb(12,12,12);*/
	
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 0;
}
.service-area-section iframe {
	width: 100%; height: 450px; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px #0067b2;
}








/**** Contact Section ****/


/**** Sections On Every Page ****/
.home-contact {
	border-top: 15px solid #c02026;border-bottom: 15px solid #c02026;
}
.parallax4 {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(192, 32, 38, 1) 0%, rgba(192, 32, 38, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 0%, rgb(255 255 255 / 88%) 45%, rgba(255, 255, 255, 1) 53%, rgb(255 255 255) 60%, rgb(255 255 255 / 79%) 100%, rgba(192, 32, 38, 1) 100%, rgba(192, 32, 38, 1) 100%, rgba(0, 0, 0, 0) 100%), url(/img/electrical-4-new.jpg);
    min-height: auto;
    background-attachment: fixed;
    background-position: bottom;
    overflow: hidden;
    /*padding: 75px 215px 75px 215px;*/
    padding: 75px 45px 75px 45px;
    background-repeat: no-repeat;
    background-size: cover;
  
  
  
}
.contact-section {
	padding: 50px 0 50px 0;
}
.home-contact  h1 {
	font-size: 35px; font-family: monospace; font-weight: 800; color: #000;
}
.home-contact  h1 span {
	font-family: 50px; font-size: 3rem;color: #c02026;
}
.home-contact  h3 {
	font-size: 35px; font-family: monospace; font-weight: 800; color: #000;
}
.home-contact  h3 span {
	font-family: 50px; font-size: 3rem;color: #c02026;
}
.home-contact  h4 {
	font-size: 22px; font-family: monospace; font-weight: 800; color: #000;
}
.home-contact  h4 span {
	 font-size: 2rem;color: #c02026;
}
.home-contact p {
		font-family: font2; font-weight: 600; font-size: 17px; line-height: 35px;
}
/* ========================================== */
/* === Misc. Section ======================== */
/* ========================================== */

/****  Referrals Owl Carousel ****/
.owl-carousel .owl-stage-outer {
	padding: 40px 0;
}
.owl-nav {
	position: absolute; width: 100%; top: 10%; display: none;
}
.owl-carousel .item {
	display: block; height: 100%;
}
.owl-carousel .owl-item span {
	font-size: 20px; font-weight: 500;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
	position: absolute;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
	background: transparent !important; color: #212121 !important; opacity: .5 !important;
}
.owl-nav .owl-next {
	left: 100%;
}
.owl-nav .owl-prev {
	right: 100%;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
	font-size: 3em; display: block;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
	outline: none;
}
.owl-carousel .owl-item img.work-examples {
    display: block;
    width: 70%;
}

.owl-carousel .owl-item img.reason-img {
    display: block;
    width: 100%;
}




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

/**** Gallery Function Section ****/
#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;
}
#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: 490px; 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;
}
#portfolio li a img {
	display: block; position: absolute; top: 0%; bottom: 0%; left: 0%; right: 0%; margin: auto; width: 100%; height: auto; transform: scale(1,1);
}
#portfolio li:hover .block-overlay {
	background-color: #000000cc;
}
#portfolio li:hover input {
	left: 0;
}
#portfolio .block-overlay {
	background: rgb(0,0,0,0.1); z-index: 1; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}

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

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

/* ========================================== */
/* === Footer Section ======================= */
/* ========================================== */
.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: #fff; font-size: 18px; font-weight: 400;
}
.footer-section .pushy {
	margin-left: 100px; margin-right: -100px; margin-top: 100px;
}
.footer-section h3 {
	font-size: 1.3rem; color: rgb(30,30,30); font-weight: bold;
}
.footer-section p {
 font-size: 17px; font-family: 'font2';
}
.footer-section a {
 font-size: 18px; color: inherit;
}
.footer-section .service-cities p {
	margin: 0 0 3px;
}
.service-cities {
	margin-bottom: 1em;
}
.service-cities img {
	padding-bottom: 20px;
}
.service-cities h5 {
	font-size: 17px; font-family: monospace;
}
.service-cities h5.disclaimer {
	font-size: 17px; font-family: monospace;
	text-align:left;
	text-decoration: underline;
	padding-bottom:15px;
}
.service-cities h5 span {
	color: #fff200;
}
.service-cities h4 {
	font-size: 20px; font-family: 'font4'; font-weight: 600; text-decoration: underline; 
}
.service-cities h3 {
	font-size: 20px; font-family: 'font4'; font-weight: 600; text-decoration: underline; 
}
.bottom-footer {
 padding: 25px 0px 10px 0px; background: #f54045;
}
.bottom-footer a {
	color: #fff;
}
.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 #fff; border-radius: 100px; height: 28px; width: 28px; margin: 0 4px;
}
.bottom-footer div[class*='col-']:nth-child(3) a:hover {
	background: #0067b2; text-decoration: none !important; color: #fff;
}
.trademark-disclaimer {
	padding: 10px 0; margin-bottom: -10px;  background: #0067b270;
}
.trademark-disclaimer p {
	font-size: 8px; text-align: center; color: #fff;
}



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



@media screen and (min-width: 1391px) and (max-width: 1690px) {


/* ======================================== */
/* === Navigvation Section ================ */
/* ======================================== */
.navbar-inverse .navbar-inner {
	display:none;
}
.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 200px; padding: .5rem 0; margin: .125rem 0 0; font-size: 18px; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(255,255,255); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-menu.columns-3 {
	min-width: 600px;
}
.dropdown-menu li a {
	padding: 5px 15px; font-weight: 300;
}
.dropdown-item {
	display: block; width: 100%; font-weight: 600; font-family: 'font2'; padding: .25rem 1.5rem; clear: both; color: rgb(12,12,12); text-align: inherit; white-space: nowrap; background: 0 0;border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255,255,255); text-decoration: none; background-color: rgb(22,22,22) !important;
}
.dropdown {
	float: left; position: relative;
}
.dropdown .dropbtn {
	font-size: 16px; border: none; outline: none; color: #0067b2; padding: 14px 16px; background-color: inherit;font-family:'font4'; margin: 0;
	        font-weight: 700;
}
.navbar a:hover, .dropdown:hover .dropbtn {
	background-color: #043174;
}
.dropdown-one {
	cursor: pointer; display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-two {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 0px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-three {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 48px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown:hover .dropdown-one, #link1:hover > .dropdown-two {
	display: block;
}
.dropdown:hover .dropdown-one, #link2:hover > .dropdown-three {
	display: block;
}
.dropdown-one .dItem {
	color: black; padding: 12px 16px; display: block; text-align: left;
}
.dropdown-one .dItem:hover, .dropdown-two a:hover {
	background-color: #ddd;
}
.my-pad {
	padding: 0 0 0 15px;
}
.my-pad h5 {
	color: rgb(255,255,255); font-size: 18px; text-transform: uppercase; padding-top: 20px;	line-height: 5px; font-weight: 600;
}
.multi-column-dropdown {
	list-style: none; margin: 0px; padding: 0px;
}
ul.multi-column-dropdown {
	padding: 0 0 0;
}
.multi-column-dropdown li a {
	display: block;	clear: both; line-height: 1.428571429; color: #333; white-space: normal;
}
.multi-column-dropdown li a:hover {
	text-decoration: none; color: #262626; background-color: #999;
}

.top-header-animate {
	background: rgb(255,255,255);
}
.top-header-animate .dropdown-toggle {
	color:#0a0a0a; font-size: 16px;
}
.top-header-animate .navbar-brand {
	font-size: 1.5em;
}
body {
	padding: 0; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.navbar-scroll {
	padding:95px 0 40px; position: fixed;   /*background-color: #f54045; 
    animation: backgroundCycle 5s infinite alternate;*/ width: 100%; z-index: 2;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
	background: white;
}
.navbar-scroll img {
	position:absolute;
	margin-top:-10px;
	margin-left:-60px;
	width: 100px;
}
.navbar-scroll .appointment{
    padding: 10px;
    background-color: #c02026;
    color: white;
    border-radius: 15px;
    font-size: 13px;
    margin-left: 0;
    display: inline-block;
}
.navbar-scroll .blue{
    padding: 10px;
    background-color: #0067b2;
    color: white;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;

}
.navbar-scroll .blue-clear{
	padding:10px;
	background-color: transparent;
	color: #0067b2;
    font-size: 13px;
    display: inline-block;
	
	font-weight: 700; 
}
@keyframes backgroundCycle {
    0% {
        background-color: #f54045; /* Starting color */
    }
    100% {
        background-color: #0067b2; /* Ending color */
    }
}

.navbar-scroll .container {
	background: rgb(60,36,17,0); border-bottom-left-radius: 1.5rem;	border-bottom-right-radius: 1.5rem;
}
#projects .navbar-scroll {
	background: #fdfdfd; position:relative !important;
}
#projects .navbar-scroll li a {
	color:#333;
}
#projects .navbar-scroll .navbar-brand {
	color:#252525;
}
#projects .navbar-light .lnr {
	color:#222;
}
.navbar-light .lnr {
	color: #fdfdfd;	font-size: 1.5em; position: absolute; top: 6px; right: 10px;
}
.navbar-light .navbar-brand {
	color: #e8e8e8; font-size: 20px; font-family: 'Montserrat', sans-serif;
}
.navbar-brand {
	font-size:2.5em; font-weight:700; text-transform:uppercase;
}
.navbar-brand:focus, .navbar-brand:hover {
	color:#f3f3f3 !important;
}
.navbar-light .navbar-nav .nav-link {
    margin: 0 10px;
    padding: 6px 0px;
    font-weight: 900;
    font-size: 13px;
    /*color: rgb(255, 255, 255);*/
    color: #0067b2;
    font-family: 'font4';
    letter-spacing: 2px;
	text-align:center;
	
}
.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 {
	
}
.navbar-light .navbar-nav li a {
	position: relative;
}
.navbar-collapse {
	height: 100%;
}
.mobile-top-header {
	display: none !important;
}




.home-header-section iframe{
	margin-top:85px; 
}


.parallax-service-2 {
  background: #f5f5f5;
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 20px 150px 2px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.parallax-service-2 h2 {
	font-size: 50px; font-family: 'font4';  color: #0067b2; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 25px;
}
.parallax-service-2 p {
	font-size: 17px; line-height: 35px; font-family: 'font2'; margin: 0px 50px 0px 50px;
	font-weight: 900; 
}
.parallax-service-2 hr {
	height: 5px; background: #f54045;
}
.parallax-service-2 li {
	font-family: monospace; font-size: 20px; letter-spacing: 1px; line-height: 60px; list-style-type: '☑'; 
}
.parallax-service-2 img {
	margin-top: -00px;
}

}


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

/* ======================================== */
/* === Navigvation Section ================ */
/* ======================================== */
.navbar-inverse .navbar-inner {
	display:none;
}
.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 200px; padding: .5rem 0; margin: .125rem 0 0; font-size: 18px; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(255,255,255); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-menu.columns-3 {
	min-width: 600px;
}
.dropdown-menu li a {
	padding: 5px 15px; font-weight: 300;
}
.dropdown-item {
	display: block; width: 100%; font-weight: 600; font-family: 'font2'; padding: .25rem 1.5rem; clear: both; color: rgb(12,12,12); text-align: inherit; white-space: nowrap; background: 0 0;border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255,255,255); text-decoration: none; background-color: rgb(22,22,22) !important;
}
.dropdown {
	float: left; position: relative;
}
.dropdown .dropbtn {
	font-size: 12px; border: none; outline: none; color: #0067b2; padding: 14px 16px; background-color: inherit;font-family: 'font4'; margin: 0;
        font-weight: 700;	
}
.navbar a:hover, .dropdown:hover .dropbtn {
	background-color: #043174;
}
.dropdown-one {
	cursor: pointer; display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-two {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 0px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-three {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 48px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown:hover .dropdown-one, #link1:hover > .dropdown-two {
	display: block;
}
.dropdown:hover .dropdown-one, #link2:hover > .dropdown-three {
	display: block;
}
.dropdown-one .dItem {
	color: black; padding: 12px 16px; display: block; text-align: left;
}
.dropdown-one .dItem:hover, .dropdown-two a:hover {
	background-color: #ddd;
}
.my-pad {
	padding: 0 0 0 15px;
}
.my-pad h5 {
	color: rgb(255,255,255); font-size: 18px; text-transform: uppercase; padding-top: 20px;	line-height: 5px; font-weight: 600;
}
.multi-column-dropdown {
	list-style: none; margin: 0px; padding: 0px;
}
ul.multi-column-dropdown {
	padding: 0 0 0;
}
.multi-column-dropdown li a {
	display: block;	clear: both; line-height: 1.428571429; color: #333; white-space: normal;
}
.multi-column-dropdown li a:hover {
	text-decoration: none; color: #262626; background-color: #999;
}

.top-header-animate {
	background: rgb(255,255,255);
}
.top-header-animate .dropdown-toggle {
	color:#0a0a0a; font-size: 16px;
}
.top-header-animate .navbar-brand {
	font-size: 1.5em;
}
body {
	padding: 0; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.navbar-scroll {
	padding:95px 0 40px; position: fixed;   /*background-color: #f54045; 
    animation: backgroundCycle 5s infinite alternate;*/ width: 100%; z-index: 2;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
	background: white;
}
.navbar-scroll img {
	position:absolute;
	margin-top:-10px;
	margin-left:-60px;
	width: 100px;
}
.navbar-scroll .appointment{
    padding: 10px;
    background-color: #c02026;
    color: white;
    border-radius: 15px;
    font-size: 10px;
    margin-left: 0;
    display: inline-block;
}
.navbar-scroll .blue{
    padding: 10px;
    background-color: #0067b2;
    color: white;
    border-radius: 15px;
    font-size: 9px;
    display: inline-block;

}
.navbar-scroll .blue-clear {
    padding: 0px;
    background-color: transparent;
    color: #0067b2;
    font-size: 12px;
    display: inline-block;
    font-weight: 700;
}
@keyframes backgroundCycle {
    0% {
        background-color: #f54045; /* Starting color */
    }
    100% {
        background-color: #0067b2; /* Ending color */
    }
}

.navbar-scroll .container {
	background: rgb(60,36,17,0); border-bottom-left-radius: 1.5rem;	border-bottom-right-radius: 1.5rem;
}
#projects .navbar-scroll {
	background: #fdfdfd; position:relative !important;
}
#projects .navbar-scroll li a {
	color:#333;
}
#projects .navbar-scroll .navbar-brand {
	color:#252525;
}
#projects .navbar-light .lnr {
	color:#222;
}
.navbar-light .lnr {
	color: #fdfdfd;	font-size: 1.5em; position: absolute; top: 6px; right: 10px;
}
.navbar-light .navbar-brand {
	color: #e8e8e8; font-size: 20px; font-family: 'Montserrat', sans-serif;
}
.navbar-brand {
	font-size:2.5em; font-weight:700; text-transform:uppercase;
}
.navbar-brand:focus, .navbar-brand:hover {
	color:#f3f3f3 !important;
}
.navbar-light .navbar-nav .nav-link {
    margin: 0 10px;
    padding: 6px 0px;
    font-weight: 900;
    font-size: 10px;
    /*color: rgb(255, 255, 255);*/
    color: #0067b2;
    font-family: 'font4';
    letter-spacing: 2px;
	text-align:center;
	
}
.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 {
	
}
.navbar-light .navbar-nav li a {
	position: relative;
}
.navbar-collapse {
	height: 100%;
}
.mobile-top-header {
	display: none !important;
}


.home-header-section iframe{
	margin-top:100px; 
}


.home-intro {
    background: linear-gradient(90deg, #ffffffd9 15.4%, #ffffffd9 15.4%, rgba(255, 255, 255, 0.85) 84.7%, #ffffffd9 84.7%), url(/img/kitchen-lighting.jpg);
	padding: 300px 0px 200px 0px;
margin-top: -200px;
    min-height: auto;
    background-position: bottom;
    overflow: hidden; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;box-shadow: 1px 1px 5px 1px #444; 
}
.home-intro h2 {
	font-family: font4; font-size: 65px; line-height: 85px; color: #000;text-shadow: 2px 2px 1px #fff; text-align: center;
}
.home-intro h2 u {
	color: #0067B2;
}
.home-intro h3 {
	font-family: monospace; font-size: 20px; color: #000; line-height: 40px;
}
.home-intro p {
	font-family: monospace; font-weight: 600; color: #fff; line-height: 35px; font-size: 25px;text-shadow: 1px 1px 3px #000; padding: 10px 150px 10px 50px;
}
.home-intro .infograph {
	padding: 35px; 
}
.home-intro mark {
	padding: 25px; font-size: 20px; background: #c02026; color: #fff; font-family: font4; font-weight: 500; text-transform: uppercase;
}
.home-intro mark:hover {
	box-shadow: 0px 0px 0px 25px #c02026; transition: .5s;
}


.home-intro-new {
    background: linear-gradient(90deg, #ffffffd9 15.4%, #ffffffd9 15.4%, rgba(255, 255, 255, 0.85) 84.7%, #ffffffd9 84.7%), url(/img/kitchen-lighting.jpg);
	padding: 300px 0px 200px 0px;
margin-top: -0;
    min-height: auto;
    background-position: bottom;
    overflow: hidden; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;box-shadow: 1px 1px 5px 1px #444; 
}
.home-intro-new h1 {
	font-family: font4; font-size: 43px; line-height: 55px; color: #0067b2;text-shadow: 2px 2px 1px #fff; text-align: left;
}
.home-intro-new h2 {
	font-family: font4; font-size: 43px; line-height: 55px; color: #0067b2;text-shadow: 2px 2px 1px #fff; text-align: left;
}
.home-intro-new h2 u {
	color: #0067B2;
}
.home-intro-new h3 {
	font-family: 'Montserrat', sans-serif; font-size: 20px; color: #000; line-height: 40px; font-size: 21px;
}
.home-intro-new h4 {
	font-family: 'Montserrat', sans-serif; font-size: 20px; color: #0067b2; line-height: 40px; font-size: 1.45rem;
}
.home-intro-new p {
	font-family: monospace; font-weight: 600; color: #fff; line-height: 35px; font-size: 25px;text-shadow: 1px 1px 3px #000; padding: 10px 150px 10px 50px;
}
.home-intro-new .infograph {
	padding: 35px; 
}
.home-intro-new mark {
	padding: 25px; font-size: 20px; background: #c02026; color: #fff; font-family: font4; font-weight: 500; text-transform: uppercase;
}
.home-intro-new img {
	border-radius: 20px;
}
.home-intro-new mark:hover {
	box-shadow: 0px 0px 0px 25px #c02026; transition: .5s;
}
.home-intro-new a.red {
	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;
    font-weight:700;
    width:auto;
    font-size: 1.35rem;
	
}
.home-intro-new a.blue {
	background: #0067b2; width: 10%; padding: 15px 5px; color: white; border: 2px solid #0067b2; border-radius: 14px;
    font-weight:700;
    width:auto;
    font-size: 1.35rem;
}
.home-intro-new a.blue-clear {
    /* font-weight: 700; */
    /* width: auto; */
    /* font-size: 1.2rem; */
    /* display: inline-block; */
    background: transparent;
    width: 10%;
    padding: 15px 5px;
    color: #0067b2;
    border: 2px solid transparent;
    border-radius: 14px;
    font-weight: 700;
    width: auto;
    font-size: 1.35rem;
    /*flex-wrap: nowrap;*/
    display: inline-block;
}

/* Styling for Marquee */
.marquee-wrapper {
    overflow: hidden;              /* Hide overflow to create scrolling effect */
    white-space: nowrap;            /* Keep content in a single line */
    position: relative;             /* Ensure child elements are positioned correctly */
    background-color: white;        /* Background color of the marquee */
    width: 100%;                    /* Full width of the screen */
    padding: 10px 0;                /* Optional padding */
}

.marquee-content {
    display: inline-block;          /* Display images in a single row */
    animation: marquee 20s linear infinite;  /* Infinite scrolling animation */
}

.marquee-img {
    max-height: 150px;              /* Control image height */
    width: auto;                    /* Maintain aspect ratio */
    margin-right: 15px;             /* Spacing between images */
}

/* Keyframes for Scrolling Animation */
@keyframes marquee {
    from {
        transform: translateX(100%);  /* Start with content just off-screen */
    }
    to {
        transform: translateX(-100%); /* Move content all the way to the left */
    }
}





/**/
/**/
/**/
/**/
/**/
/**/
/**/
/* Marquee styles */
/* Marquee Styling */
.marquee {
	
	padding:15px 0;
    --gap: 20px;                     /* Adjust spacing between images */
    position: relative;
    display: flex;
    overflow: hidden;
    gap: var(--gap);                /* Use CSS variable for gap */
    user-select: none;              /* Prevent text/image selection */
}

.marquee-content {
    flex-shrink: 0;                 /* Prevent shrinking */
    display: flex;                 /* Horizontal alignment */
    justify-content: space-around;
    gap: var(--gap);               /* Control spacing */
    min-width: 100%;               /* Ensure it takes up full width */
    animation: scroll 38s linear infinite; /* Infinite scroll animation */
}

.marquee-img {
    max-height: 160px;             
    width: 100%;
}

/* Keyframes for Continuous Scrolling */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap))); /* Scroll off-screen */
    }
}

/* Optional: Reverse Scroll Direction */
.marquee--reverse .marquee-content {
    animation-direction: reverse;
}

/* Optional: Pause on Hover */
.marquee:hover .marquee-content {
    /*animation-play-state: paused;*/
}


/*Company Marquee END*/




.home1 {
	padding: 0px 0px 200px 0px; background: #EAE8E8;
}
.home1 .plax1 {
	/*background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/el-3.jpg");*/
	background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/led-gallery/led-gallery-42.jpeg");

	
    min-height: auto;
   background-attachment: fixed;
    background-position: center;
    overflow: hidden;
    padding:  50px; height: 100%; width: 103%;
    background-repeat: no-repeat;
    background-size: cover;
}
.home1 .spanner {
	padding: 100px 25px 100px 25px;
}
.home1  .push {
	padding: 15px; margin-left: 50px;
}
.home1 .push:hover {
	 transition: 3s; background: #ffffffb8; box-shadow: 1px 1px 10px 1px #000;
}
.home1 .push img {
	
}
.home1 .push:hover img {
	box-shadow: 1px 1px 10px 1px #000;
}
.home1 .push:hover h2 {
	margin-left: 00px; color: #c02026; transition: 1.5s; font-weight: 600; text-decoration: underline;
}
.home1 iframe {
	opacity: 50%;
}
.home1 .pad {
	padding: 50px 75px 50px 75px; background: #fff; height: 100%; box-shadow: 10px -10px 0px 0px #c02026; border: 3px solid #444; border-left-width: 5px; border-top-width: 5px; 
}
.home1 h1 {
	font-family: 'font4'; font-size: 40px; text-align: center; font-weight: 500; color: rgb(196,41,56);
}
.home1 h2 {
	font-size: 27px; font-family: monospace; padding: 25px 0px 10px 0px; color: #fff; text-shadow: 1px 1px 1px #000;
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600; text-align: center; color: rgb(150,150,150); line-height: 35px;
}
.home1 h1 span {
	color: rgb(83,82,82); font-size: 50px; text-shadow: 2px 2px 1px #000;
}
.home1 h1 strong {
	 font-size: 40px;
}
.home1 img {
	    background: #fff;
    border-radius: 50%;
    padding: 10px; margin: 5px 0px 5px 0px;
    border: 3px solid #c02026;
}
.home1 hr {
	background: #fff;
}

.home-company-video1 a.blue-clear {
    /* font-weight: 700; */
    /* width: auto; */
    /* font-size: 1.2rem; */
    /* display: inline-block; */
    background: transparent;
    width: 10%;
    padding: 0;
    color: #0067b2;
    border: 2px solid transparent;
    border-radius: 14px;
    font-weight: 700;
    width: auto;
    font-size: 1.24rem;
    display: inline-block;
}
.home4 {
	padding: 100px 00px 100px 25px; background: #f5f5f5;
}
.home4 .boxed {
	padding: 75px 5px 75px 15px; background: #fff;
}
.home4 h3 {
	font-size: 20px; font-family: font4; font-weight: 500; line-height: 50px; padding: 10px 5px 10px 5px;
}
.home4 h3:hover {
	background: #0009; color: #fff200;
}
.home4 p {
	color: #000; font-family: font2; font-weight: 600; font-size: 17px; line-height: 35px; text-align: center; margin-left: 35px; padding: 0px 35px 0px 35px;
}
.home4 mark {
	padding: 15px; background: #c02026; font-family: monospace; color: #fff; font-size: 20px; margin-left: 15px;
}
.home4 mark:hover {
	box-shadow: 0px 0px 0px 15px #c02026; transition: .5s;
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.home4 .pad {
	padding: 25px; position: absolute;  background: linear-gradient(270deg, rgb(0 0 0 / 0%) 12%, #1d1b1bbf 12%, #1d1b1bbf 51.9%, rgb(0 0 0 / 0%) 51.9%);
	
	}
.home4  h2 {
	font-weight: 500; color: rgb(255,255,255); font-size: 40px; text-shadow: 0px 0px 5px #000; font-family: monospace; text-align: left; padding: 0px 0px 25px 0px;
}
.home4  h2 span {
	font-family: font4; font-size: 60px; padding: 0px 5px 0px 5px;  margin-left: 10px;
}
.home4 .pad h4 {
	font-weight: 500; color: rgb(255,255,255); font-size: 25px; text-shadow: 0px 0px 5px #000; font-family: monospace; text-align: left; line-height: 50px;
}
.home4 .pad h4 span {
	color: #fff200; font-size: 30px;
}
.home4 .emergency {
	/*padding: 200px 0px 200px 35px;background: linear-gradient(90deg, rgba(0, 0, 0, 0) 18%, rgba(242, 242, 242, 1) 18%, rgba(255, 255, 255, 0.75) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/emergency-2.jpg);*/
	padding: 200px 0px 200px 35px;background: linear-gradient(90deg, rgba(0, 0, 0, 0) 18%, rgba(242, 242, 242, 1) 18%, rgba(255, 255, 255, 0.75) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/led-gallery/led-gallery-55.jpeg);
	
	
	
	background-size: cover; background-repeat: no-repeat; background-position: top; /*background-attachment: fixed;*/ height: 1000px;
}




.home-customers-benefit{
    
}

.home-customers-benefit {
	padding: 100px 110px 100px 110px; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home-customers-benefit h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}
.home-customers-benefit h2{
	/*color: #c02026;*/
	color:#0067B2;
    font-weight: 800;
	font-size:2.7rem;
}
.home-customers-benefit p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
	text-align: center;
}


.home-customers-benefit .text-square p{
    width: 300px; /* Define the square's width */
	height: 900px;
    aspect-ratio: 1 / 1; /* Ensure the height matches the width */
    display: flex; /* Flexbox for centering */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    text-align: center; /* Optional: Align text inside */
    padding: 20px; /* Inner padding for spacing */
    box-sizing: border-box; /* Include padding in dimensions */
}
.home-customers-benefit a.blue {
    /* font-weight: 700; */
    /* width: auto; */
    /* font-size: 14px; */
    background: #c02026;
    width: auto;
    padding: 15px 5px;
    color: white;
    border: 2px solid #c02026;
    border-radius: 14px;
    font-weight: 700;
    dis: auto;
    font-size: 14px;
    display: inline-block;
font-size: 1.65rem;
    padding: 20px 10px;
	
	box-shadow: 1px 1px 10px 1px black; 
	transition: box-shadow 0.2s ease; /* Smooth transition for hover effect */
}
.home-customers-benefit a.blue:hover {

	box-shadow: 4px 4px 10px 4px black; 
	
}

.home-customers-benefit i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home-customers-benefit hr {
	background: #c02026; height: 2px;
}
.home-customers-benefit .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.home-customers-benefit .padder h2{
	color: #c02026;
    font-weight: 600;
}
.home-customers-benefit .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}






/**** About Section ****/

.about1 {
	padding: 250px 0px 0px 0px;
}
.about1 .icon {
padding: 150px 150px 150px 250px;
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(11 11 11 / 0%)), url(/img/led-icon.png);
    background-repeat: no-repeat;
    background-size: 25%;
    min-height: auto;
    height: 100%;
    background-position: left;
}
.about1 h1 {
	font-family: font4; font-size: 50px;  margin-left: 50px; margin-right: -250px;
}
.about1  h2 {
	font-family: monospace; font-size: 35px; text-align: center;
	
}
.about1 h1 span {
	 font-size: 55px; color: #000;
}
.about1 h1 strong {
	color: #c02026;
}
.about1 h2 span {
	color: #000; 
}
.about1 h2 strong {
	color: #c02026;
}
.about1 h4 {
	    font-family: font4;
    font-size: 40px;
}
.about1  p {
	font-family: font2; font-size:17px; text-align: center; line-height: 35px; font-weight: 600;
}
.about1 hr {
	width: 93.5%;
    margin: 0px;
    background: #c02026;
    height: 5px;
    opacity: 100%;
    margin-bottom: -5px;
}
.about1 .cardy1 {
	    padding: 250px 35px 250px 35px;
/*background: linear-gradient(270deg, #ffffff80 0%, #ffffff80 20%, #ffffff80 20%, #ffffff80 33%, #ffffff80 50%, #ffffff80 64%, rgba(255, 255, 255, 0.5) 80%, #ffffff80 80%, #ffffff80 100%), url(/img/electrical-boom-1.jpg); border-top: 15px solid #c02026;*/
background: linear-gradient(270deg, #ffffff80 0%, #ffffff80 20%, #ffffff80 20%, #ffffff80 33%, #ffffff80 50%, #ffffff80 64%, rgba(255, 255, 255, 0.5) 80%, #ffffff80 80%, #ffffff80 100%), url(/img/led-gallery/led-gallery-56.jpeg); border-top: 15px solid #c02026;


border-bottom: 15px solid #c02026;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: auto;
    height: 100%;
    background-position: top right;
}
.about1 .cardy2 {
padding: 75px 35px 125px 35px; background: linear-gradient(36deg, rgba(0, 0, 0, 0) 21%, rgba(192, 32, 38, 1) 21%, rgba(192, 32, 38, 1) 21.3%, rgb(255 255 255) 21.3%, rgb(255 255 255 / 82%) 56%, rgba(192, 32, 38, 1) 56%, rgba(192, 32, 38, 1) 56.3%, rgba(0, 0, 0, 0) 56.3%), url(/img/electrical-boom-2.jpg); background-repeat: no-repeat; background-size: cover; 
    min-height: auto; height: 100%;
    
    background-position: top right;
}
.about1 .cardy3 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy4 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy5 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy1 hr {
	background: #000; height: 2px;  margin: 1rem 0; opacity: .25; width: 100%;
}
.about1 .popper {
	padding: 25px; margin-left: 100px;
	 margin-right: -100px;
}
.about1  .popper2 {
	padding: 25px; 
}
.about1  .popper3 {
	    margin-top: 620px;
    margin-left: -105px;
    margin-right: 105px;

}
.about1 img {
	max-width: 75%; margin-bottom: 50px;
}


/**** Services Section ****/
.electric-services {
	box-shadow: 1px 1px 10px 3px #000;
}
.electric-services h1 {
	font-family: 'font4'; font-weight: 500; font-size: 65px; letter-spacing: 3px; color: #c02026; text-shadow: 1px 1px 1px #444; line-height: 80px;
	text-align: center; 
}
.electric-services h1 span {
	font-size: 45px; font-family: 'font2'; font-weight:600; line-height: 50px;
}
.electric-services h2 {
	font-family: 'font2'; font-weight: 600; font-size: 35px; letter-spacing: 3px; text-transform: uppercase;
}
.electric-services h3 {
	font-family: 'font5'; font-weight: 500; font-size: 17px; letter-spacing: 3px; background: linear-gradient(90deg, rgba(51,108,133,1) 0%, rgba(133,169,186,1) 25%, #9dc6d9 50%, rgba(133,169,186,1) 75%, rgba(51,108,133,1) 100%);
    padding: 25px 10px 25px 10px;
    margin-top: -50px;
    margin-bottom: 0px;
    width: 110%; color: #fff;
    margin-right: 50px;
    margin-left: -100px;
    box-shadow: 1px 1px 5px 3px #000; text-align: center;
}
.electric-services h3 span {
	font-size: 17px; font-family: 'font2'; font-weight:600;
}
.electric-services p {
	font-size: 17px; font-family: 'font2'; line-height: 35px; 
}
.electric-services mark {
	padding: 15px;
    font-size: 20px;
    font-family: 'font2';
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #444;
    background: #6c98ac94;
}
.electric-services mark:hover {
	background: #6c98ac; color: #fff; text-shadow: 1px 1px 3px #000;
}
.electric-services a {
	color: inherit;
}
 .boxer {
	padding: 75px 50px 75px 50px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
 .boxer-2 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-2:hover {
	    background: #9dc6d9; color: #fff;
}
.boxer-2:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
.boxer-2:hover p {
	text-shadow: 3px 3px 7px #444;
}
 .boxer-3 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-3:hover {
	    background: #6c98ac; color: #fff;
}
.boxer-3:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
 .boxer-4 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-4:hover {
	    background: #44788f; color: #fff;
}
.boxer-4:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
.parallax-service-1 {
background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 20%, rgba(255,255,255,0.5) 20%, rgba(255,255,255,1) 33%, rgba(255,255,255,0.9092978255755427) 50%, rgba(255,255,255,1) 64%, rgba(255,255,255,0.5) 80%, rgba(192,32,38,0.5) 80%, rgba(192,32,38,0.5) 100%), url("/img/electrical-4-new.jpg");
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 350px 25px 300px 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.residential-electrical {
	padding: 150px 0px 150px 50px; background: #6c98ac; 
}

.parallax-service-2 {
  background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-2-new.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 75px 150px 75px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.parallax-service-2 h2 {
	font-size: 50px; font-family: 'font4'; text-align: center; color: #c02026; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 75px;
}


.parallax-service-2 img {
	margin-top: -50px;
}



.parallax-service-3 {
 background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-inspection-1.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 25px 150px 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-service-3 h2 {
	font-size: 25px; font-family: 'font5'; text-align: left; color: #6c98ac; letter-spacing: 3px; text-shadow: 1px 1px 1px #000; padding-bottom: 25px;
}
.parallax-service-3 p {
	font-size: 17px; line-height: 35px; font-family: 'font2';
}
.parallax-service-3 img {
	box-shadow: 1px 1px 10px 3px #000; max-width: 75%; margin-top: 50px; margin-left: 75px;
}
.parallax-service-4 {
 background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-generator-1.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 25px 150px 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-service-4 h2 {
	font-size: 25px; font-family: 'font5'; text-align: left; color: #6c98ac; letter-spacing: 3px; text-shadow: 1px 1px 1px #000; padding-bottom: 25px;
}
.parallax-service-4 p {
	font-size: 17px; line-height: 35px; font-family: 'font2';
}
.parallax-service-4 img {
	box-shadow: 1px 1px 10px 3px #000; max-width: 75%; margin-top: 50px; margin-right: 75px;
}
.tab {
  overflow: hidden; background-color: #fff; font-family: 'font2'; display: inline-grid; height: 100%;    height: 575px; border: 5px solid #c02026; border-right: none; border-top: none;
}
.tab button {
  background-color: inherit; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px; font-family: 'font2'; text-align: left; line-height: 35px;
}
.tab button:hover {
  background-color: #c0202694; color: #fff;
}
.tab button.active {
  background-color: #c02026; color: #fff;
}
.tab2 {
  overflow: hidden; background-color: #fff; font-family: 'font2'; display: inline-grid; height: 100%;  height: 575px; border: 5px solid #c02026; border-left: none;
}
.tab2 button {
  background-color: inherit; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px; font-family: 'font2'; text-align: left; line-height: 35px;
}
.tab2 button:hover {
  background-color: #c0202694; color: #fff;
}
.tab2 button.active {
  background-color: #c02026; color: #fff;
}
.tabcontent {
  display: none; padding: 75px; border: 3px solid #444; background: #fff;
  /*height: 575px;*/

  height: 100%;
  box-shadow: 25px -25px 0px 0px #c02026;
  padding: 16px; 
}
.tabcontent h3 {
	padding-top: 20px; padding-bottom: 20px; font-family: 'font4';	text-align: left;	font-size: 1.1rem; color: #c02026; letter-spacing: 3px; font-weight: 600;
}
.tabcontent p {
	font-family: font2; font-weight: 600; font-size: 15px; line-height: 35px;
}
.tabcontent img {
 box-shadow: 1px 1px 10px 1px #000;margin-top: -50px;
}
.cardy-1 {
	background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgb(255 255 255 / 85%) 25%, rgba(170,195,207,0.61237905806854) 50%, rgba(133,169,186,0.7832474054074755) 75%, rgba(51,108,133,0.9149000664719013) 100%); padding: 50px 25px 50px 25px; box-shadow: 1px 1px 10px 3px #000;
}
.cardy-2 {
	background: linear-gradient(1deg, rgba(255,255,255,1) 0%, rgb(255 255 255 / 85%) 25%, rgba(170,195,207,0.61237905806854) 50%, rgba(133,169,186,0.7832474054074755) 75%, rgba(51,108,133,0.9149000664719013) 100%); padding: 50px 25px 50px 25px; box-shadow: 1px 1px 10px 3px #000;
}
.home-splitter {
	background:  #c02026; padding: 50px; text-align: center;
}
.home-splitter h2 {
	font-family: monospace;  color: #fff; font-size: 35px; color: #fff; letter-spacing: 2px;
}
.home-splitter mark {
	background: #fff; border-radius: 7px; color: #c02026; padding: 10px; font-size: 20px; font-family: 'font2'; font-weight: 600; text-transform: uppercase; border: 7px double #c02026; 
}
.home-splitter mark:hover {
	box-shadow: 1px 1px 5px 1px #000;
}
.home-splitter p {
	line-height: 35px; font-size: 17px; font-family: 'font2'; color: #fff;
}
.home-splitter hr {
	background: #fff;
}




.footer-section p {
    font-size: 13px;
    font-family: 'font2';
}

}
/* === Tablet CSS Section ===================== */
/*@media screen and (max-width: 768px) {*/
@media screen and (max-width: 991px){

body,html{
	overflow-x: hidden; 
}


/* ======================================== */
/* === Top Header Section ================= */
/* ======================================== */
.top-header {
	position: fixed; width: 100%; z-index: 1; padding: 10px 0 10px 0; background: rgb(255,255,255);	z-index: 3; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
    background-color: #f54045; 
    animation: backgroundCycle 5s infinite alternate;
    margin-top: -0;    
}
.top-header {
	color:white;  font-weight:650;
}
.top-header div[class*='col-']:first-child {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:first-child a {
	padding: 0; font-size: 15px; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.top-header div[class*='col-']:first-child a:hover {
	background-color: transparent;
}
/*.top-header div[class*='col-']:nth-child(2) {*/
/*	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-']:nth-child(2) a {
	padding: 9px 15px 9px 15px; background:transparent; font-weight: bolder; font-family: 'font2'; color: white; border-radius: .6rem; border: none;
	    font-size: 19px;         font-family: monospace;
}
.top-header div[class*='col-']:nth-child(2) a:hover {
	background: transparent;
}


.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(3) a {
	padding: 9px 15px 9px 15px; background: #c02026; font-weight: bolder; font-family: 'font2'; color: white; border-radius: .6rem; border: 2px double black;
	    font-size: 19px;         font-family: monospace;
	
}
.top-header div[class*='col-']:nth-child(3) a:hover {
	background: #c02026;
}
.top-header div[class*='col-']:nth-child(4) {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(4) a {
	padding: 9px 15px 9px 15px; background: #c02026; font-weight: 800; font-family: 'font2'; color: white; border-radius: .6rem; border: 2px double black;
	font-size:19px;         font-family: monospace;
}
.top-header div[class*='col-']:nth-child(4) a:hover {
	color: white;
}
.top-header div[class*='col-']:nth-child(5) {
	display: flex; justify-content: flex-start; align-items: center;
}
.top-header div[class*='col-']:nth-child(5) a {
    padding: 9px 15px 9px 15px;
    background: #c02026;
    font-weight: 800;
    font-family: 'font2';
    color: white;
    border-radius: .6rem;
    border: 2px double black;
    font-size: 14px;
    font-family: monospace;
}
.top-header div[class*='col-']:nth-child(5) a:hover {
	color: white;
}
.top-header div[class*='col-']:nth-child(6) a {
	display: flex; justify-content: center; align-items: center; border: 1px solid rgb(255,255,255); color: rgb(255,255,255); background: rgb(196,41,56); border-radius:100px;	height: 34px; width: 34px; margin: 0 4px;
}
.top-header div[class*='col-']:nth-child(6) a:hover {
	background: rgb(196,41,56,0.8);	text-decoration:none !important; color: rgb(255,255,255);
}


.top-header .dropdown-menu {
	background: whitesmoke; border-radius: 0;
}
.top-header .dropdown-menu a {
	color: #222; padding: 3px 20px !important;
}
.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;
}
/**** Top Header Section ****/
.mobile-top-header {
	display:block !important; padding: 0 30px 0; background: rgb(135,170,188); z-index: 4; overflow: visible;
}
.mobile-menu {
	text-align: center; position: fixed; height: 100%; width: 100%;	display: block;	padding-top: 6em; 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;
}
#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;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(0,0,0);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(0,0,0);
}
.top-header {
	background: white; display: none;
}
.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display: none;
}
.header-contact_info .navbar-brand {
	font-size: 1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content: flex-start;
}
.top-header div[class*='col-'] {
	display: flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background: none; margin: 0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size: inherit; line-height: inherit;
}

/**** Navigation Section ****/
.dropdown-wrapper {
	margin: 0; padding: 0;
}
.navbar-sidebar .dropdown-menu-mobile {
	position: relative; display: none; top: 0; left: 0; z-index: 1000; float: left; height: 0px; margin: 0; width: 100%; padding: 0; font-size: 18px; color: #e6e6e6 !important; text-align: left; list-style: none; background-color: rgb(200,200,200); 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 {
	display: inline-block !important; transform: scale(1,1) !important; padding: 25px 0 !important; height: auto !important; visibility: visible !important;
}
.navbar-sidebar .dropdown-menu-mobile a {
	color: rgb(75,75,75); font-weight:600 !important; font-size: 1.3em; font-family: 'Raleway'; text-align: center;
}
.navbar-sidebar {
	padding-top: 145px; height: 100%; width: /*200px*/auto; background-color: rgb(250,250,250); position: fixed !important; z-index: 2; overflow: auto;
}
.bar-block .dropdown-hover, .bar-block .dropdown-click {
	width: 100%;
}
.bar-block .dropdown-hover .dropdown-content, .bar-block .dropdown-click .dropdown-content {
	min-width: 100%;
}
.bar-block .dropdown-hover .button, .bar-block .dropdown-click .button {
	width: 100%; text-align: left; padding: 8px 16px;
}
.main, #main {
	transition: margin-left .4s;
}
.modal {
	display: none; padding-top: 100px; position: fixed; left: 0; top: 0; width: 100%; height: 100%;	overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);
}
.modal-content {
	margin: auto; background-color: #fff; position: relative; padding: 0; outline: 0; width: 1200px;
}
.bar {
	width: 100%; overflow: hidden;
}
.center .bar {
	display: inline-block; width: auto;
}
.bar .bar-item {
	padding: 8px 16px; float: left; width: auto; border: none; display: block; outline: 0;
}
.bar .dropdown-hover, .bar .dropdown-click {
	position: static; float: left;
}
.bar .button {
	white-space: normal;
}
.bar-block .bar-item {
	width: 100%; display: block; padding: 8px 16px; text-align: left; border: none; white-space: normal; float: none; outline: 0;
	        font-family: 'font4';
			color:#0067b2;
}
.bar-block.center .bar-item {
	text-align: center;
}
.block {
	display: block; width: 100%;
}
.nav-link{
	        font-family: 'font4';
			color:#0067b2;
}
/**** Home Section ****/
.home-header-section {
	padding-top: 125px;
}
.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: 1rem; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(87, 86, 87); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-item {
	display: block;	width: 100%; padding: .25rem 1.5rem; clear: both; color: rgb(255,255,255); text-align: inherit;	white-space: nowrap; background: 0 0; border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255, 255, 255); text-decoration: none; background-color: rgb(22,22,22) !important;
}

/* ========================================== */
/* === Website Pages Section ================ */
/* ========================================== */

/**** Home Section ****/
.bg-primary {
	background: rgb(83,82,82) !important;
}
.home-header-section {
	padding-top: 125px;
}
.home-header-section .slider-logo span {
	font-family: 'font'; color: rgb(196,41,56);
}


.home-header-section iframe{
	margin-top:20px; 
}

.home-intro {
	padding: 300px 0px 200px 0px;
	/*background: linear-gradient(104.5deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.7524350804775035) 49%, rgba(192, 32, 38, 1) 49%, rgba(192, 32, 38, 1) 49.3%, rgba(0, 0, 0, 0.0) 49.3%), url(/img/bulb-2-new.jpg);*/
	background: url(/img/background-home.png);
	
    min-height: auto;
	
    background-position: bottom;
    overflow: hidden; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;box-shadow: 1px 1px 5px 1px #444; 
}
.home-intro h2 {
	font-family: font4; font-size: 30px; line-height: 55px; color: #000;text-shadow: 2px 2px 1px #fff;
}
.home-intro h2 u {
	color: #c02026;
}
.home-intro h3 {
	font-family: monospace; font-size: 20px; color: #000; line-height: 40px;
}
.home-intro p {
	font-family: monospace; font-weight: 600; color: #fff; line-height: 35px; font-size: 25px;text-shadow: 1px 1px 3px #000; padding: 10px 150px 10px 50px;
}
.home-intro .infograph {
	padding: 50px; 
}
.home-intro mark {
	padding: 10px; font-size: 17px; background: #c02026; color: #fff; font-family: font4; font-weight: 500; text-transform: uppercase;
}
.home-intro mark:hover {
	box-shadow: 0px 0px 0px 25px #c02026; transition: .5s;
}




.home-intro-new {
    background: linear-gradient(90deg, #ffffffd9 15.4%, #ffffffd9 15.4%, rgba(255, 255, 255, 0.85) 84.7%, #ffffffd9 84.7%), url(/img/kitchen-lighting.jpg);
	padding: 300px 0px 200px 0px;
margin-top: -0;
    min-height: auto;
    background-position: bottom;
    overflow: hidden; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;box-shadow: 1px 1px 5px 1px #444; 
}
.home-intro-new h1 {
	font-family: font4; font-size: 32px; line-height: 55px; color: #0067b2;text-shadow: 2px 2px 1px #fff; text-align: left;
}
.home-intro-new h2 {
	font-family: font4; font-size: 32px; line-height: 55px; color: #0067b2;text-shadow: 2px 2px 1px #fff; text-align: left;
}
.home-intro-new h2 u {
	color: #0067B2;
}
.home-intro-new h3 {
	font-family: 'Montserrat', sans-serif; font-size: 20px; color: #000; line-height: 40px; font-size: 16px;
}
.home-intro-new h4 {
	font-family: 'Montserrat', sans-serif; font-size: 20px; color: #0067b2; line-height: 40px; font-size: 1.45rem;
}
.home-intro-new p {
	font-family: monospace; font-weight: 600; color: #fff; line-height: 35px; font-size: 25px;text-shadow: 1px 1px 3px #000; padding: 10px 150px 10px 50px;
}
.home-intro-new .infograph {
	padding: 35px; 
}
.home-intro-new mark {
	padding: 25px; font-size: 20px; background: #c02026; color: #fff; font-family: font4; font-weight: 500; text-transform: uppercase;
}
.home-intro-new img {
	border-radius: 20px;
}
.home-intro-new mark:hover {
	box-shadow: 0px 0px 0px 25px #c02026; transition: .5s;
}
.home-intro-new a.red {
	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;
    font-weight:700;
    width:auto;
    font-size: 1.15rem;
	
}
.home-intro-new a.blue {
	background: #0067b2; width: 10%; padding: 15px 5px; color: white; border: 2px solid #0067b2; border-radius: 14px;
    font-weight:700;
    width:auto;
    font-size: 1.15rem;
}



.home-company-video1{
    
}

.home-company-video1 {
	padding: 100px 0; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed; text-align: center;
}
.home-company-video1 h4 {
	font-family: font4; font-size: 22px; color: #c02026;
}
.home-company-video1 h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}

.home-company-video1 h2{
	color: #0067b2;
    font-weight: 600;
	font-size:1.8rem;
	
}
.home-company-video1 h2.sub{
	color: #0067b2;
    font-weight: 600;
	font-size:1.4rem;
}
.home-company-video1 p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 0;
}
.home-company-video1 p.squish {
	padding:0 00px; 
	
}

.motion1 {
	/*background: linear-gradient(107deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.7524350804775035) 49%, rgba(192, 32, 38, 1) 49%, rgba(192, 32, 38, 1) 49.3%, rgba(0, 0, 0, 0.0) 49.3%), url(/img/electrical-1.jpg);*/
	background: linear-gradient(107deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.7524350804775035) 49%, rgba(192, 32, 38, 1) 49%, rgba(192, 32, 38, 1) 49.3%, rgba(0, 0, 0, 0.0) 49.3%), url(/img/led-gallery/led-gallery-3.jpeg);
	
	background-size: cover;
	padding: 100px 0 150px 0;
}
.motion1 .carousel {
  --current-slide: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 10px 3px #000;
}
.motion1 .carousel-button {
  /* vertically centering the buttons */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  padding: 0;
  margin: 0.5rem;
  margin-left: 20px;
	height: 35px;
	width: 35px;
  border-radius: 100%;
	line-height: 0.9;
	color: rgb(83,82,82);
  background-color: transparent;
  border: none;
  font-size: 50px;
  cursor: pointer;
  transition: color 0.1s;
}
.motion1 .carousel-button:hover {
  color: rgba(0, 0, 0, 0.5);
	border: none;
}
.motion1 .carousel-button.active {
	border: none !important;
}
.motion1 .carousel-button_next {
  right: 0;
  margin-right: 35px;
	border: none;
}
.motion1 .slides {
  display: flex;
  transition: transform 0.5s;
  transform: translateX(calc(-100% * var(--current-slide)));
}
.motion1 .slide {
    flex: 0 0 100%;
    background: #f5f5f5;
    /* margin-bottom: -75px; */
    padding: 50px 75px 25px 75px;
    max-width: 100%;
}
.motion1 h2 {
	font-family: monospace;
	color: #c02026; text-align: center;
	font-size: 25px;
}
.motion1 span {
	color: rgb(196,41,56);
}
.motion1 span:hover {
	color: #0009;
}
.motion1 h3 {
	font-family: font4; font-size: 50px; text-align: center; padding-bottom: 75px;text-shadow: 2px 1px 1px #fff;
}
.motion1 p i {
	font-size: 25px; color: #c02026;
}
.motion1 .slide p {
  color: rgb(150,150,150);
	font-family: 'font2';
	text-align: center;
	font-size: 15px;
	font-weight: 600;
}
.home1 {
	padding: 0px 0px 200px 0px; background: #EAE8E8;
}
.home1 .plax1 {
	/*background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/el-3.jpg");*/
	background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/led-gallery/led-gallery-42.jpeg");

	
    min-height: auto;
   background-attachment: fixed;
    background-position: center;
    overflow: hidden;
    padding:  50px; height: 100%; width: 103%;
    background-repeat: no-repeat;
    background-size: cover;
}
.home1 .spanner {
	padding: 100px 25px 100px 25px;
}
.home1  .push {
	padding: 15px; margin-left: 0;
}
.home1 .push:hover {
	 transition: 0.1s; background: #ffffffb3;
}
.home1 .push img {
	
}
.home1 .push:hover img {
	box-shadow: 1px 1px 10px 1px #000;
}
.home1 .push:hover h2 {
	margin-left: 0; color: #c02026; transition: 0.1s; font-weight: 600; text-decoration: overline;
}
.home1 iframe {
	opacity: 50%;
}
.home1 .pad {
	padding: 50px 20px 50px 20px; background: #fff; height: 100%; box-shadow: 10px -10px 0px 0px #c02026; border: 3px solid #444; border-left-width: 5px; border-top-width: 5px; 
}
.home1 h1 {
	font-family: 'font4'; font-size: 40px; text-align: center; font-weight: 500; color: rgb(196,41,56);
}
.home1 h2 {
	font-size: 20px; font-family: monospace; padding: 25px 0px 10px 0px; color: #fff; text-shadow: 1px 1px 1px #000; text-align: center;
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600; text-align: center; color: rgb(150,150,150); line-height: 35px;
}
.home1 h1 span {
	color: rgb(83,82,82); font-size: 30px; text-shadow: 2px 2px 1px #000;
}
.home1 h1 strong {
	 font-size: 40px;
}
.home1 img {
	    background: #fff;
    border-radius: 50%;
    padding: 10px; margin: 5px 0px 5px 0px;
    border: 3px solid #c02026;
}
.home1 hr {
	background: #fff;
}
.home2 {
	background: #f5f5f5; padding: 150px 0px 150px 0px;
	height: auto; 
}
.home2 h4 {
	font-family: monospace; font-weight: 600; font-size: 30px; text-align: center; color: #c02026;
}
.home2  p {
	font-family: font2; line-height: 35px; font-size: 17px; text-align: center; font-weight: 600;
}
.home2 .boxer {
	padding: 75px 25px 0px 25px; background: #fff; height: 100%;
}
.home2 img {
	max-width: 75%; margin-top: 75px;
}
.home2 .plax2 {
	/*background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/electrical-3.jpg");*/
	background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/light-3.jpg");

	
	min-height: auto;
   background-attachment: fixed;
    background-position: center;
    overflow: hidden;
    padding: 150px 50px 70px 50px; 
    background-repeat: no-repeat;
	height: 100%;
    background-size: cover;box-shadow: 1px 1px 5px 1px #444; 
}
.home2 .plax2:hover {
	background: #fff;height: 100%;
}
.home2 .plax2 h3 {
	font-family: font4; padding: 10px; background: #fff200; text-align: center; transform: rotate(320deg);
    margin-left: -165px;
    margin-top: -75px;
    
}
.home2 .plax2:hover h3 {
	transform: rotate(0deg);
    margin-left: 0px;
    margin-top: -50px;
	padding: 10px; background: #c02026; color: #fff; transition: 1s; width: 75%; margin-left: 50px;
}
.home2 .plax2 h5 {
	color: transparent; font-size: 20px; font-family: font2; font-weight: 600;
}
.home2 .plax2:hover h5 {
	color: #000; margin-top: 15px;
}
.home2 .plax2:hover h5 span {
	color: #c02026;
}
.home2 .plax2  p {
	font-family: font2; line-height: 35px; font-size: 17px; color: transparent; text-align: center;
}
.home2 .plax2:hover p {
	color: #000;
}
.home2 .plax2 img {
	max-width: 25%;
}
.home2 .plax2:hover img {
	display: none;
}
.home-solutions-section{
    
}

.home-solutions-section {
	padding: 100px 10px 100px 10px; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home-solutions-section h3 {
	font-family: font4; font-size: 35px; color: #0067b2;
}
.home-solutions-section h2{
	/*color: #c02026;*/

    color: #0067b2;


    font-weight: 600;
}
.home-solutions-section p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 0.9rem;;
    padding: 20px;
}
.home-solutions-section i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home-solutions-section hr {
	background: #c02026; height: 2px;
}
.home-solutions-section .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
	/*text-align: center; */
}
.home-solutions-section .padder h2{
	color: #c02026;
    font-weight: 600;
	text-align: center; 
}
.home-solutions-section .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}

.home-solutions-section p.padder-content:hover{
	color: white;
	background: #c02026;
    font-weight: 600;
	text-align: center; 
}


.tooltip-inner {
	/*margin-top:100px;*/
    max-width: none; /* Limit the tooltip width */
	width: 100%;
    text-align: left; /* Align the text */
    font-size: 0.9rem; /* Adjust font size */
    background-color: #0067b2; /* Background color */
    color: #fff; /* Text color */
    padding: 15px; /* Add padding */
    border-radius: 8px; /* Rounded corners */
	
}

.tooltip ul {
    margin: 0;
    padding: 0;
    list-style-type: none; /* Use bullets for the list */
}

.tooltip ul li {
    margin-bottom: 5px; /* Space between list items */
}

.home-customers-benefit{
    
}

.home-customers-benefit {
	padding: 100px 10px 100px 10px; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home-customers-benefit h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}
.home-customers-benefit h2{
	/*color: #c02026;*/
	color:#0067B2;
    font-weight: 800;
	font-size:2rem;
}
.home-customers-benefit p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
}
.home-customers-benefit a.blue {
	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;
    font-weight:700;
    /*width:auto;*/
    font-size: 14px;
    display: grid;
    width: 80%;
}
.home-customers-benefit i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home-customers-benefit hr {
	background: #c02026; height: 2px;
}
.home-customers-benefit .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.home-customers-benefit .padder h2{
	color: #c02026;
    font-weight: 600;
}
.home-customers-benefit .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}




.home-contact-split .offer-card{
	
    min-width: 100%;
    box-sizing: border-box;
    padding: 35px;
    text-align: center;
    background: #fff;
    border: 1px solid #c02026;
    border-radius: 10px;
    display: block
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	
	/*height: auto !important*/
}

.home-contact-split .offer-card h3 {
    font-family: font4;
    font-size: 1.8rem;
    color: #c02026;
}



.home-contact-split .offer-card ul {
    list-style-position: outside;
    padding-left: 20px;
    margin: 0;
}

.home-contact-split .offer-card li {
    margin: 0;
    padding: 8px 0;
    text-align: left;
}
.home-contact-split .offer-card h2 {
	color: #c02026;
}
.home-contact-split .offer-card li p {
    padding: 0;
    display: inline;
    margin: 0;
    font-size: 1.1rem;
    line-height: 20px;
    margin-left: 0;;
}
.home-contact-split .offer-card li p {
    padding: 0;
    display: inline;
    margin: 0;
    font-size: 1.1rem;
    line-height: 20px;
    margin-left: 0px;
}
.home-contact-split .offer-card li p span {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.3rem;
}


.home-contact-split .offer-card  a {
    background: #c02026;
    color: white;
    border: 1px solid black;
    padding: 10px;
    border-radius: 20px;
    display: inline-flex;
}


.home-contact-split{
	
}
.home-contact-split {
	padding: 100px 10px 100px 10px; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home-contact-split h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}
.home-contact-split h2{
	/*color: #c02026;*/
	color:white;
    font-weight: 600;
}
.home-contact-split p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
}
.home-contact-split a.blue {
	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;
    font-weight:700;
    /*width:auto;*/
    font-size: 14px;
    display: grid;
    width: 80%;
}

.home-contact-split hr {
	background: #c02026; height: 2px;
}
.home-contact-split .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.home-contact-split .padder h2{
	color: #c02026;
    font-weight: 600;
}
.home-contact-split .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}

/**/
/*SLIDER FOR COUPONS START*/
.manual-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 35px;
    text-align: center;
    background: #fff;
    border: 1px solid #c02026;
    border-radius: 10px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


.slide ul {
    list-style-position: outside;
    padding-left: 20px;
    margin: 0;
}

.slide li {
    margin: 0;
    padding: 8px 0;
    text-align: left;
}
.slide h2 {
	color: #c02026;
    font-size: 30px;
	
}
.slide h3 {
    font-family: font4;
    font-size: 22px;
    color: #c02026;
}
.slide li p, .flip-card-back li p {
    padding: 0;
    display: inline;
    margin: 0;
    font-size: 1.1rem;
    line-height: 20px;
    margin-left: 10px;
}

.slide li p span {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.3rem;
}


/**/
/*SLIDER FOR COUPONS END*/


.home-testimonials{
    
}

.home-testimonials {
    padding: 100px 15px 100px 15px;
    background-image: linear-gradient(rgb(0, 0, 0, 0.0), rgb(11, 11, 11, 0.0)), url(/img/smart-home-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.home-testimonials h3 {
	font-family: font4; font-size: 35px; color: #c02026;     font-weight: 600;

}
.home-testimonials h2{
	/*color: #c02026;*/
	color:#0067B2;
    font-weight: 600;
}
.home-testimonials p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
}
.home-testimonials a.blue {
	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;
    font-weight:700;
    /*width:auto;*/
    font-size: 14px;
    display: grid;
    width: 80%;
}
.home-testimonials i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home-testimonials hr {
	background: #c02026; height: 2px;
}
.home-testimonials .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.home-testimonials .padder h2{
	color: #c02026;
    font-weight: 600;
}
.home-testimonials .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}


.home-map{
    padding:0;
	background: gray;
}

.home-faq{
    padding:100px 0;
	background: white;;
}
.home-faq h4 {
	font-family: monospace; font-weight: 600; font-size: 40px; text-align: center; color: #0067b2;
}
.home-faq h5 {
	font-family: monospace; font-weight: 700;  text-align: center; font-size: 1.5rem;;
}
.home-faq .boxer mark {
	color: transparent; background: transparent;
}
.home-faq .boxer h6 {
	color: transparent; background: transparent;
}
.home-faq .boxer:hover mark {
	padding: 15px; font-family: font4; letter-spacing: 2px; color: #fff; text-shadow: 1px 1px 1px #444; background: #0067b2; border-radius: 15px; width: 75%;
}
.home-faq .boxer:hover h6 {
	padding: 15px; font-family: font4; letter-spacing: 2px; color: #fff; text-shadow: 1px 1px 1px #444; background: #f54045; border-radius: 15px; width: 50%;
}
.home-faq  p {
	font-family: font2; line-height: 35px; font-size: 17px; text-align: center; font-weight: 600;
}



/*WHY HOMEOWNERS*/

.why-homeowners{
    
}

.why-homeowners {
	padding: 100px 0; 	background-image: white; background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.why-homeowners h4 {
	font-family: font4; font-size: 2rem; color: #c02026;
}
.why-homeowners h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}

.why-homeowners h2{
	color: #0067b2;
    font-weight: 600;
	font-size:2.2rem;
	
}
.why-homeowners h2.sub{
	color: #0067b2;
    font-weight: 600;
	font-size:1.8rem;
	line-height: 35px;
}
.why-homeowners h2.sub span{
	font-style: italic; 
}


.why-homeowners p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 0;
	text-align: center; 
}

.why-homeowners a.red {
/*	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 14px;*/
    background: #c02026;
    width: auto;
    padding: 15px 5px;
    color: white;
    border: 2px solid #c02026;
    border-radius: 14px;
    font-weight: 700;
    dis: auto;
    font-size: 1.2rem;
    display: inline-block;
	
	text-align: center;
}

.why-homeowners a.red.large{
	font-size: 1.65rem;
	padding: 20px 10px; 
}



.why-homeowners a.blue {
/*	background: #c02026; width: 10%; padding: 15px 5px; color: white; border: 2px solid #c02026; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 14px;*/
    background: #0067b2;
    width: auto;
    padding: 15px 5px;
    color: white;
    border: 2px solid #c02026;
    border-radius: 14px;
    font-weight: 700;
    dis: auto;
    font-size: 14px;
    display: inline-block;
}


.why-homeowners a.blue-clear {
/*	background: transparent; width: 10%; padding: 0; color: #0067b2; border: 2px solid transparent; border-radius: 14px;*/
/*    font-weight:700;*/
/*    width:auto;*/
/*    font-size: 1.2rem;*/
/*	display: inline-block;*/
	background: transparent; width: 10%; padding: 0; color: #0067b2; border: 2px solid transparent; border-radius: 14px;
    font-weight:700;
    width:auto;
    font-size: 1.85rem;
	display: inline-block;

}


.why-homeowners i {
	font-size: 20px; color: #c02026; margin-top: 0; margin-left: 25px;
}
.why-homeowners hr {
	background: #c02026; height: 2px;
}
.why-homeowners .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;    border-radius: 25px;
}
.why-homeowners .padder h2{
	color: #c02026;
    font-weight: 600;
}
.why-homeowners .padder p.padder-content{
    background: #e3e3e3;
    border: 2px solid #9d9d9d;
    border-radius: 12px;
    text-align:center;
    padding:10px 10px;
}

/*WHY HOMEOWNERS END*/


.home3 {
	padding:180px 25px 180px 25px ; 	background-image: linear-gradient(rgb(0,0,0,0.0), rgb(11,11,11,0.0)), url("/img/collage-led-22.jpg"); background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home3 h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}
.home3 p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
}
.home3 i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home3 hr {
	background: #c02026; height: 2px;
}
.home3 .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;
}
.home3 .padder:hover {
	padding: 25px; background: #c02026; height: 100%; border: 1px solid #fff;
}
.home3 .padder:hover h3 {
	color: #fff;
}
.home3 .padder:hover p {
	color: #fff;
}
.home3 .padder:hover i {
	color: #fff;
}
.home4 {
	padding: 100px 00px 100px 0px; background: #f5f5f5;
}
.home4 .boxed {
	padding: 75px 5px 75px 15px; background: #fff;
}
.home4 h3 {
	font-size: 20px; font-family: font4; font-weight: 500; line-height: 50px; padding: 10px 5px 10px 5px;
}
.home4 h3:hover {
	background: #0009; color: #fff200;
}
.home4 p {
	color: #000; font-family: font2; font-weight: 600; font-size: 15px; line-height: 35px; text-align: center; margin-left: 0; padding: 0px 35px 0px 35px;
}
.home4 mark {
	padding: 15px; background: #c02026; font-family: monospace; color: #fff; font-size: 20px; margin-left: 15px;
}
.home4 mark:hover {
	box-shadow: 0px 0px 0px 15px #c02026; transition: .5s;
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.home4 .pad {
    padding: 25px;
    position: relative;
    background: linear-gradient(270deg, rgb(0 0 0 / 0%) 100%, #1d1b1bbf 100%, #1d1b1bbf 101.9%, rgb(0 0 0 / 0%) 99.9%);
	}
.home4  h2 {
	font-weight: 500; color: rgb(255,255,255); font-size: 40px; text-shadow: 0px 0px 5px #000; font-family: monospace; text-align: center; padding: 0px 0px 25px 0px;
}
.home4  h2 span {
	font-family: font4; font-size: 60px; padding: 0px 5px 0px 5px;  margin-left: 10px;
}
.home4 .pad h4 {
	font-weight: 500; color: rgb(255,255,255); font-size: 25px; text-shadow: 0px 0px 5px #000; font-family: monospace; text-align: left; line-height: 50px;
}
.home4 .pad h4 span {
	color: #fff200; font-size: 30px;
}
.home4 .emergency {
	/*padding: 200px 0px 200px 35px;background: linear-gradient(90deg, rgba(0, 0, 0, 0) 18%, rgba(242, 242, 242, 1) 18%, rgba(255, 255, 255, 0.75) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/emergency-2.jpg);*/
	padding: 200px 15px 200px 15px;
	/*background: linear-gradient(90deg, rgba(0, 0, 0, 0) 18%, rgba(242, 242, 242, 1) 18%, rgba(255, 255, 255, 0.75) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/led-gallery/led-gallery-55.jpeg);*/
	background: linear-gradient(252deg, rgb(255 255 255 / 22%) 18%, rgb(255 255 255) 100%, rgba(255, 255, 255, 0.75) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/led-gallery/led-gallery-55.jpeg);
	
	
	background-size: cover; background-repeat: no-repeat; background-position: top; /*background-attachment: fixed;*/ height: 100%;
}
.my-class {
    -webkit-animation:name 7.5s infinite;
}

@keyframes name {
    0% {color:#fff;}
    20%{color:#fff}
	40% {color:#fff;}
	60% {color:#fff;}
	80% {color:#fff;}
	 100%{color:#fff200}
}
.PULSE {
   /* Chrome, Safari, Opera */
  -webkit-animation: PULSE 3s infinite; 
  animation-delay: 5s;
  /* Internet Explorer */
  -ms-animation: PULSE 3s infinite;
  
  /* Standard Syntax */
  animation: PULSE 3.25s infinite; 
}

/* Chrome, Safari, Opera */
@-webkit-keyframes PULSE{
   0%{color:#fff200;}	
	110%{color: black;}
}

/* Internet Explorer */
@-ms-keyframes PULSE{
   0%{color:#fff200;}	
	110%{color: black;}
}

/* Standard Syntax */
@keyframes PULSE{
  0%{color:#fff200;}		
	110%{color: black;}
}
.PULSE2 {
   /* Chrome, Safari, Opera */
  -webkit-animation: PULSE2 3s infinite; 
  animation-delay: 5s;
  /* Internet Explorer */
  -ms-animation: PULSE2 3s infinite;
  
  /* Standard Syntax */
  animation: PULSE2 3.25s infinite; 
}

/* Chrome, Safari, Opera */
@-webkit-keyframes PULSE2{
   0%{color:#fff200;}	
	110%{color: black;}
}

/* Internet Explorer */
@-ms-keyframes PULSE2{
   0%{color:#fff200;}	
	110%{color: black;}
}

/* Standard Syntax */
@keyframes PULSE2{
  0%{color:#fff200;}		
	110%{color: black;}

}
.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: auto;
    color: white;
    font-size: 12px;
    font-family: font2;
    font-weight: 600;
    background-color: #c02026;
    padding: 15px;
    margin-top: -45px;
	

}
.tooltip-text h4 {
	font-family: font4; font-size: 20px;
}
.hover-text:hover .tooltip-text {
  visibility: visible;
}

#top {
  top: -40px;
  left: -50%;
}

#bottom {
  top: 25px;
  left: -50%;
}

#left {
  top: -8px;
  right: 120%;
}

#right {
  top: -8px;
  left: 150%;
}

.hover-text {
  position: relative;
  display: inline-block;
  /*margin: 40px;*/
  font-family: Arial;
  text-align: center;
}



.video .pad p {
	margin-top: 0% !important; color: rgb(255,255,255); text-shadow: 0px 0px 5px #000; font-size: 20px; font-family: 'font2'; text-align: left; font-weight: 600; line-height:40px;
}
.video .pad a {
	font-size: 16px; color: rgb(255,255,255); font-family: 'Arial'; font-weight: 600; border: 1px solid rgb(12,32,63); padding: 15px 30px; border-radius: 1.6rem; background: rgb(12,32,63);
}
.video .pad a:hover {
	color: rgb(255,255,255); border: 1px solid rgb(255,255,255); background: transparent;
}
.video .pad  hr {
	background: #c02026; height: 2px;
}
.home-split1 {
	padding: 50px 0px 50px 0px; color: #c02026; text-align: center; background: #c02026; border: 15px solid #000; border-top: 5px solid #000; border-bottom: 5px solid #000;
}
.home-split1 h3 {
	font-family: font5; font-size: 50px;
}
.home-split1 h5 {
	font-size: 50px; font-weight: 300; color: #000;
}
.home-split1 h6 {
	font-family: 'font4'; letter-spacing: 2px; font-size: 20px; color: #000; text-transform: uppercase;
}
.home-split1 .liner {
	background: #fff; width: 10%;
}
.home-split1 .hexer {
  padding:  50px; box-shadow: 1px 1px 10px -2px #000; margin-top: -100px; margin-bottom: -100px; background: #fff; background-size: cover;
    min-height: auto;
    background-attachment: fixed; position: relative; z-index: 1; border: 7px solid #000;
}



.blog-top {
background: #0067b2;
    padding: 120px 0 120px 0;
}
.blog-top .box {
	padding: 10px 45px 0px 50px;
}
.blog-top h1 {
	color: white;  font-family: 'font4'; letter-spacing: 0.20rem; font-weight: 600; font-size: 30px; text-align: center;
}
.blog-top h5 {
	color: rgb(100,100,100); font-family: 'font4'; text-align: center; font-size: 15px;
}
.blog-top p {
	color: rgb(100,100,100); font-family: 'font4'; font-size: 17px; text-align: center;
}
.blog-top a {
	color: rgb(21,135,198); padding: 10px 60px; text-transform: uppercase; letter-spacing: 0.04rem; font-weight: 600; font-size: 15px; font-family: 'font4'; 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-top img {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 3px rgb(0,0,0);
}
.crumb-blog {
	background: rgb(255,255,255); padding: 0;
}
.crumb-blog hr {
	background: rgb(100,100,100); border: 1px solid rgb(100,100,100);
}
.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: 'font4'; text-align: justify; font-weight: 300; color: rgb(80,80,80);
}
.blog-template h1 {
	color: rgb(20,20,20); text-align: left; font-weight: 600; font-family: 'font4'; font-size: 35px;
}
.blog-template h2 {
	font-family: 'font4'; color: rgb(20,20,20); font-size: 23px;
}
.blog-template h2.headline {
	color: rgb(20,20,20); text-align: left; font-weight: 600; font-family: 'font4'; font-size: 18px; text-decoration: underline; 
}
.blog-template h3 {
	font-family: 'font4'; font-weight: 600; color: rgb(21,135,198); font-size: 25px;
}
.blog-template h4 {
	color: rgb(20,20,20); text-align: left; font-weight: 600; font-family: 'font4'; font-size: 35px;
}
.blog-template h5 {
	font-family: 'font4'; font-weight: 600; color: rgb(20,20,20); font-size: 25px;
}
.blog-template h6 {
	font-size: 23px; font-family: 'font4'; font-weight: 600; color: rgb(0,0,0);
}
.blog-template p {
	color: rgb(100,100,100); font-family: 'font4'; text-align: justify; font-weight: 300;
}
.blog-template li {
	color: rgb(20,20,20); font-size: 17px; font-family: 'font4';
}
.box-link {
	display: inline-block; right:0;
}
.box-link a {
	display: inline-block; text-align: right;
}
.box-link p{
	text-align: right;
}
.box-link ul{
	list-style: none;
}
.box-link li{
	display: inline-block; margin-right: 10px; /* add spacing between items */
}
/**** About Section ****/

.about1 {
	padding: 200px 15px 0px 15px;
}
.about1 .icon {
padding: 150px 150px 150px 250px;
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(11 11 11 / 0%)), url(/img/led-icon.png);
    background-repeat: no-repeat;
    background-size: 25%;
    min-height: auto;
    height: 100%;
    background-position: left;
}
.about1 h1 {
	font-family: font4; font-size: 30px;  margin-left: 0; margin-right: -0; text-align: center;
}
.about1  h2 {
	font-family: monospace; font-size: 35px; text-align: center;
	
}
.about1 h1 span {
	 font-size: 55px; color: #000;
}
.about1 h1 strong {
	color: #c02026;
}
.about1 h2 span {
	color: #000; 
}
.about1 h2 strong {
	color: #c02026;
}
.about1 h4 {
	    font-family: font4;
    font-size: 40px;
	text-align: center;
}
.about1 h5 {
	text-align: center;
}
.about1  p {
	font-family: font2; font-size:17px; text-align: center; line-height: 35px; font-weight: 600;
}
.about1 hr {
	width: 93.5%;
    margin: 0px;
    background: #c02026;
    height: 5px;
    opacity: 100%;
    margin-bottom: -5px;
}
.about1 .cardy1 {
	    padding:50px 15px 50px 15px;
/*background: linear-gradient(270deg, #ffffff80 0%, #ffffff80 20%, #ffffff80 20%, #ffffff80 33%, #ffffff80 50%, #ffffff80 64%, rgba(255, 255, 255, 0.5) 80%, #ffffff80 80%, #ffffff80 100%), url(/img/electrical-boom-1.jpg); border-top: 15px solid #c02026;*/
background: linear-gradient(270deg, #ffffff80 0%, #ffffff80 20%, #ffffff80 20%, #ffffff80 33%, #ffffff80 50%, #ffffff80 64%, rgba(255, 255, 255, 0.5) 80%, #ffffff80 80%, #ffffff80 100%), url(/img/led-gallery/led-gallery-56.jpeg); border-top: 15px solid #c02026;


border-bottom: 15px solid #c02026;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: auto;
    height: 100%;
    background-position: top right;
}
.about1 .cardy2 {
padding: 75px 35px 125px 35px; background: linear-gradient(36deg, rgba(0, 0, 0, 0) 21%, rgba(192, 32, 38, 1) 21%, rgba(192, 32, 38, 1) 21.3%, rgb(255 255 255) 21.3%, rgb(255 255 255 / 82%) 56%, rgba(192, 32, 38, 1) 56%, rgba(192, 32, 38, 1) 56.3%, rgba(0, 0, 0, 0) 56.3%), url(/img/electrical-boom-2.jpg); background-repeat: no-repeat; background-size: cover; 
    min-height: auto; height: 100%;
    
    background-position: top right;
}
.about1 .cardy3 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy4 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy5 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy1 hr {
	background: #000; height: 2px;  margin: 1rem 0; opacity: .25; width: 100%;
}
.about1 .popper {
	padding: 25px; margin-left: 100px;
	 margin-right: -100px;
}
.about1  .popper2 {
	padding: 25px; 
}
.about1  .popper3 {
	    margin-top: 620px;
    margin-left: -105px;
    margin-right: 105px;

}
.about1 img {
	max-width: 75%; margin-bottom: 50px;
}
/**** Services Section ****/
.electric-services {
	box-shadow: 1px 1px 10px 3px #000;
}
.electric-services h1 {
	font-family: 'font4'; font-weight: 500; font-size: 45px; letter-spacing: 3px; color: #c02026; text-shadow: 1px 1px 1px #444; line-height: 60px;
}
.electric-services h1 span {
	font-size: 20px; font-family: 'font2'; font-weight:600; line-height: 50px;
}
.electric-services h2 {
	font-family: 'font2'; font-weight: 600; font-size: 35px; letter-spacing: 3px; text-transform: uppercase;
}
.electric-services h3 {
	font-family: 'font5'; font-weight: 500; font-size: 17px; letter-spacing: 3px; background: linear-gradient(90deg, rgba(51,108,133,1) 0%, rgba(133,169,186,1) 25%, #9dc6d9 50%, rgba(133,169,186,1) 75%, rgba(51,108,133,1) 100%);
    padding: 25px 10px 25px 10px;
    margin-top: -50px;
    margin-bottom: 0px;
    width: 110%; color: #fff;
    margin-right: 50px;
    margin-left: -100px;
    box-shadow: 1px 1px 5px 3px #000; text-align: center;
}
.electric-services h3 span {
	font-size: 17px; font-family: 'font2'; font-weight:600;
}
.electric-services p {
	font-size: 17px; font-family: 'font2'; line-height: 35px; 
}
.electric-services mark {
	padding: 15px;
    font-size: 20px;
    font-family: 'font2';
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #444;
    background: #6c98ac94;
}
.electric-services mark:hover {
	background: #6c98ac; color: #fff; text-shadow: 1px 1px 3px #000;
}
.electric-services a {
	color: inherit;
}
 .boxer {
	padding: 75px 50px 75px 50px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
 .boxer-2 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-2:hover {
	    background: #9dc6d9; color: #fff;
}
.boxer-2:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
.boxer-2:hover p {
	text-shadow: 3px 3px 7px #444;
}
 .boxer-3 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-3:hover {
	    background: #6c98ac; color: #fff;
}
.boxer-3:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
 .boxer-4 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-4:hover {
	    background: #44788f; color: #fff;
}
.boxer-4:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
.parallax-service-1 {
background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.5) 10%, rgba(255,255,255,1) 34%, rgba(255,255,255,0.9092978255755427) 50%, rgba(255,255,255,1) 64%, rgba(255,255,255,0.5) 100%, rgba(192,32,38,0.5) 80%, rgba(192,32,38,0.5) 100%), url("/img/electrical-4-new.jpg");
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
text-align: center;
	overflow: hidden;
	padding: 150px 25px 50px  25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.residential-electrical {
	padding: 150px 0px 150px 50px; background: #6c98ac; 
}
.parallax-service-2 {
  background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-2-new.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 100px 20px 100px 20px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.parallax-service-2 img {
    margin-top: 40px;
}
.parallax-service-2 h2 {
	font-size: 50px; font-family: 'font4'; text-align: center; color: #c02026; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 75px;
}
.parallax-service-3 {
 background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-inspection-1.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 25px 150px 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-service-3 h2 {
	font-size: 25px; font-family: 'font5'; text-align: left; color: #6c98ac; letter-spacing: 3px; text-shadow: 1px 1px 1px #000; padding-bottom: 25px;
}
.parallax-service-3 p {
	font-size: 17px; line-height: 35px; font-family: 'font2';
}
.parallax-service-3 img {
	box-shadow: 1px 1px 10px 3px #000; max-width: 75%; margin-top: 50px; margin-left: 75px;
}
.parallax-service-4 {
 background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-generator-1.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 25px 150px 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-service-4 h2 {
	font-size: 25px; font-family: 'font5'; text-align: left; color: #6c98ac; letter-spacing: 3px; text-shadow: 1px 1px 1px #000; padding-bottom: 25px;
}
.parallax-service-4 p {
	font-size: 17px; line-height: 35px; font-family: 'font2';
}
.parallax-service-4 img {
	box-shadow: 1px 1px 10px 3px #000; max-width: 75%; margin-top: 50px; margin-right: 75px;
}
.tab {
    overflow: hidden;
    background-color: #fff;
    font-family: 'font2';
    display: revert-layer;
    height: 100%;
    height: auto;
    border: 5px solid #c02026;
    /*border-right: none;*/
    /*border-top: none;*/
}
.tab button {
  background-color: inherit; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px; font-family: 'font2'; text-align: left; line-height: 35px;
}
.tab button:hover {
  background-color: #c0202694; color: #fff;
}
.tab button.active {
  background-color: #c02026; color: #fff;
}
.tab2 {
  overflow: hidden; background-color: #fff; font-family: 'font2'; display: inline-grid; height: 100%;  height: 575px; border: 5px solid #c02026; border-left: none;
}
.tab2 button {
  background-color: inherit; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px; font-family: 'font2'; text-align: left; line-height: 35px;
}
.tab2 button:hover {
  background-color: #c0202694; color: #fff;
}
.tab2 button.active {
  background-color: #c02026; color: #fff;
}

.tabcontent {
  display: none; padding: 25px; border: 3px solid #444; background: #fff;
  /*height: 575px;*/

  height: 100%;
  box-shadow: 25px -25px 0px 0px #c02026;
  margin-top: 100px;
}
.tabcontent h3 {
	padding-top: 20px; padding-bottom: 20px; font-family: 'font4';	text-align: left;	font-size: 1rem; color: #c02026; letter-spacing: 3px; font-weight: 600;
}
.tabcontent p {
	font-family: font2; font-weight: 600; font-size: 14px; line-height: 35px;
}
.tabcontent img {
 box-shadow: 1px 1px 10px 1px #000;margin-top: -0;
}
.cardy-1 {
	background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgb(255 255 255 / 85%) 25%, rgba(170,195,207,0.61237905806854) 50%, rgba(133,169,186,0.7832474054074755) 75%, rgba(51,108,133,0.9149000664719013) 100%); padding: 50px 25px 50px 25px; box-shadow: 1px 1px 10px 3px #000;
}
.cardy-2 {
	background: linear-gradient(1deg, rgba(255,255,255,1) 0%, rgb(255 255 255 / 85%) 25%, rgba(170,195,207,0.61237905806854) 50%, rgba(133,169,186,0.7832474054074755) 75%, rgba(51,108,133,0.9149000664719013) 100%); padding: 50px 25px 50px 25px; box-shadow: 1px 1px 10px 3px #000;
}
.home-splitter {
	background:  #c02026; padding: 50px; text-align: center;
}
.home-splitter h2 {
	font-family: monospace;  color: #fff; font-size: 35px; color: #fff; letter-spacing: 2px;
}
.home-splitter mark {
	background: #fff; border-radius: 7px; color: #c02026; padding: 10px; font-size: 20px; font-family: 'font2'; font-weight: 600; text-transform: uppercase; border: 7px double #c02026; 
}
.home-splitter mark:hover {
	box-shadow: 1px 1px 5px 1px #000;
}
.home-splitter p {
	line-height: 35px; font-size: 17px; font-family: 'font2'; color: #fff;
}
.home-splitter hr {
	background: #fff;
}



/*Indoor Lighting Page*/
.indoor-lighting-services {
	box-shadow: 1px 1px 10px 3px #000;
}
.indoor-lighting-services h1 {
	font-family: 'font4'; font-weight: 500; font-size: 35px; letter-spacing: 3px; color: #c02026; text-shadow: 1px 1px 1px #444; line-height: 45px;
}
.indoor-lighting-services h1 span {
	font-size: 25px; font-family: 'font2'; font-weight:600; line-height: 45px;
}
.indoor-lighting-services h2 {
	font-family: 'font2'; font-weight: 600; font-size: 35px; letter-spacing: 3px; text-transform: uppercase;
}
.indoor-lighting-services h3 {
	font-family: 'font5'; font-weight: 500; font-size: 17px; letter-spacing: 3px; background: linear-gradient(90deg, rgba(51,108,133,1) 0%, rgba(133,169,186,1) 25%, #9dc6d9 50%, rgba(133,169,186,1) 75%, rgba(51,108,133,1) 100%);
    padding: 25px 10px 25px 10px;
    margin-top: -50px;
    margin-bottom: 0px;
    width: 110%; color: #fff;
    margin-right: 50px;
    margin-left: -100px;
    box-shadow: 1px 1px 5px 3px #000; text-align: center;
}
.indoor-lighting-services h3 span {
	font-size: 17px; font-family: 'font2'; font-weight:600;
}
.indoor-lighting-services p {
	font-size: 17px; font-family: 'font2'; line-height: 35px; 
}
.indoor-lighting-services mark {
	padding: 15px;
    font-size: 20px;
    font-family: 'font2';
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #444;
    background: #6c98ac94;
}
.indoor-lighting-services mark:hover {
	background: #6c98ac; color: #fff; text-shadow: 1px 1px 3px #000;
}
.indoor-lighting-services a {
	color: inherit;
}
.indoor-lighting-services .parallax-service-1 {
    background: linear-gradient(270deg, #0067b2a3 0%, #0067b2a3 5%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 0.9092978255755427) 50%, rgba(255, 255, 255, 1) 64%, rgba(255, 255, 255, 0.5) 90%, rgba(192, 32, 38, 0.5) 95%, rgba(192, 32, 38, 0.5) 100%), url(/img/led-gallery/led-gallery-10.jpeg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 350px 25px 300px 25px;
  background-repeat: no-repeat;
  background-size: cover;
} 
/*Indoor Lighting Page END*/



/**** Gallery Section ****/
.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}

/**** Areas We Service Section ****/
.area:nth-child(odd) {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.area:nth-child(even) {
	padding: 75px 0 75px 0; background: rgb(245,245,245);
}
.area h2 {
	font-size: 2.5rem; font-family: monospace; font-weight: 800; color: rgb(196,41,56);
}
.area h4 {
	font-size: 1.5rem; font-family: monospace; color: rgb(75,75,75);
}
.area p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 1rem;
    padding: 0;
}
.area iframe {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px #0067b2;
}

/**** Contact Section ****/


/**** Sections On Every Page ****/
.home-contact {
	padding: 
}
.parallax4 {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(192, 32, 38, 1) 0%, rgba(192, 32, 38, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 38%, rgb(255 255 255 / 88%) 45%, rgba(255, 255, 255, 1) 53%, rgb(255 255 255) 60%, rgb(255 255 255 / 79%) 100%, rgba(192, 32, 38, 1) 87%, rgba(192, 32, 38, 1) 88%, rgba(0, 0, 0, 0) 88%), url(/img/electrical-4-new.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 75px 20px 75px 20px;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-section {
	padding: 50px 0 50px 0;
}
.home-contact  h1 {
	font-size: 35px; font-family: monospace; font-weight: 800; color: #000;
}
.home-contact  h1 span {
	font-family: 2.3rem; font-size: 3rem;color: #c02026;
}
.home-contact  h3 {
	font-size: 35px; font-family: monospace; font-weight: 800; color: #000; text-align: center;
}
.home-contact  h3 span {
font-size: 2.3rem;color: #c02026; text-align: center;
}
.home-contact p {
		font-family: font2; font-weight: 600; font-size: 17px; line-height: 35px; text-align: center;
}


/**** About Section ****/


/**** Services Section ****/


/**** Gallery Section ****/
.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}

/**** Contact Section ****/


/**** Sections On Every Page ****/
.contact-section {
	padding: 50px 0 50px 0;
}
.contact-section h3 {
	font-size: 2rem; font-family: font2; font-weight: 800; text-align: center; color: rgb(12,12,12);
}
.owl-carousel .owl-item img {
    display: block;
    width: 30%;
}
.owl-carousel .owl-item img.work-examples {
    display: block;
    width: 70%;
}

/* ========================================== */
/* === Footer Section ======================= */
/* ========================================== */
.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:white; color: black; font-size: 18px; font-weight: 400;
}
.footer-section .pushy {
	margin-left: 0; margin-right: -0; margin-top: 0;
}
.footer-section h3 {
	font-size: 1.3rem; color: rgb(30,30,30); font-weight: bold;
}
.footer-section p {
	color: black; font-size: 15px; font-family: 'font2';
}
.footer-section a {
	color: black; font-size: 16px;
}
.footer-section .service-cities p {
	margin: 0 0 3px;
}
.service-cities {
	margin-bottom: 1em;
}
.service-cities img {
	padding-bottom: 20px;
}
.service-cities h5 {
	font-size: 17px; font-family: monospace;
}
.service-cities h5 span {
	color: #fff200;
}
.service-cities h4 {
	font-size: 20px; font-family: 'font4'; font-weight: 600; text-decoration: underline; color: black;
}
.service-cities h3 {
	font-size: 30px; font-family: 'font4'; font-weight: 600; text-align: center; color:  black; padding-bottom: 25px;
}
.bottom-footer {
 padding: 25px 0px 10px 0px; background: #c02026;
}
.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 #fff; 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;
}
.trademark-disclaimer {
	padding: 10px 0; margin-bottom: -10px;  background: #000;
}
.trademark-disclaimer p {
	font-size: 8px; text-align: center; color: #fff;
}

/**** Misc. Section ****/
.btn {
	background: rgb(249,78,1); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.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;
}
.alert-dismissible .close {
	position: absolute; top: 0; right: 0; background: transparent; border: none; padding: 0.75rem 1.25rem; color: rgb(80,80,80); font-family: 'font2'; outline: none; z-index: 3;
}
.alert-dismissible .close span {
	font-size: 35px;
}
.lnr {
	display: inline-block; fill: currentColor; width: 1em; height: 1em; vertical-align: -0.2em; cursor: pointer;
}
}
/* === Mobile CSS Section ===================== */


/*@media screen and (max-width: 425px)  {*/
@media screen and (min-width: 310px) and (max-width: 690px) {

body,html{
	overflow-x: hidden; 
}
/**** Top Header Section ****/
.mobile-top-header {
	display:block !important; padding: 0 30px 0; background: rgb(135,170,188); z-index: 4; overflow: visible;
}
.mobile-menu {
	text-align: center; position: fixed; height: 100%; width: 100%;	display: block;	padding-top: 6em; 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;
}
#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;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(0,0,0);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(0,0,0);
}
.top-header {
	background: white; display: none;
}
.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display: none;
}
.header-contact_info .navbar-brand {
	font-size: 1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content: flex-start;
}
.top-header div[class*='col-'] {
	display: flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background: none; margin: 0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size: inherit; line-height: inherit;
}

/**** Navigation Section ****/
.dropdown-wrapper {
	margin: 0; padding: 0;
}
.navbar-sidebar .dropdown-menu-mobile, .navbar-sidebar .dropdown-menu-mobile-2 {
	position: relative; display: none; top: 0; left: 0; z-index: 1000; float: left; height: 0px; margin: 0; width: 100%; padding: 0; font-size: 18px; color: #e6e6e6 !important; text-align: left; list-style: none; background-color: rgb(200,200,200); 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;
}
.navbar-sidebar .dropdown-menu-mobile a, .navbar-sidebar .dropdown-menu-mobile-2 a{
	color: rgb(75,75,75); font-weight:600 !important; font-size: 1.3em; font-family: 'Raleway'; text-align: center;
	
}

.nav-link .dropdown-toggle-btn{
	color: #0067b2;
	font-family: 'font4'
}
.navbar-sidebar {
	padding-top: 160px; height: 100%; width: /*200px*/auto; background-color: rgb(250,250,250); position: fixed !important; z-index: 2; overflow: auto;
}
.bar-block .dropdown-hover, .bar-block .dropdown-click {
	width: 100%;
}
.bar-block .dropdown-hover .dropdown-content, .bar-block .dropdown-click .dropdown-content {
	min-width: 100%;
}
.bar-block .dropdown-hover .button, .bar-block .dropdown-click .button {
	width: 100%; text-align: left; padding: 8px 16px;
}
.main, #main {
	transition: margin-left .4s;
}
.modal {
	display: none; padding-top: 100px; position: fixed; left: 0; top: 0; width: 100%; height: 100%;	overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);
}
.modal-content {
	margin: auto; background-color: #fff; position: relative; padding: 0; outline: 0; width: 1200px;
}
.bar {
	width: 100%; overflow: hidden;
}
.center .bar {
	display: inline-block; width: auto;
}
.bar .bar-item {
	padding: 8px 16px; float: left; width: auto; border: none; display: block; outline: 0;
}
.bar .dropdown-hover, .bar .dropdown-click {
	position: static; float: left;
}
.bar .button {
	white-space: normal;
}
.bar-block .bar-item {
	width: 100%; display: block; padding: 8px 16px; text-align: left; border: none; white-space: normal; float: none; outline: 0;
	        font-family: 'font4';
}
.bar-block.center .bar-item {
	text-align: center;
}
.block {
	display: block; width: 100%;
}

/**** Home Section ****/
.home-header-section {
	padding-top: 125px;
}
.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: 1rem; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(87, 86, 87); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-item {
	display: block;	width: 100%; padding: .25rem 1.5rem; clear: both; color: rgb(255,255,255); text-align: inherit;	white-space: nowrap; background: 0 0; border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255, 255, 255); text-decoration: none; background-color: rgb(22,22,22) !important;
}

/* ========================================== */
/* === Website Pages Section ================ */
/* ========================================== */

/**** Home Section ****/
.bg-primary {
	background: rgb(83,82,82) !important;
}
.home-header-section {
	padding-top: 125px;
}
.home-header-section .slider-logo span {
	font-family: 'font'; color: rgb(196,41,56);
}
.home-intro {
	padding: 300px 0px 200px 0px;
	/*background: linear-gradient(104.5deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.7524350804775035) 49%, rgba(192, 32, 38, 1) 49%, rgba(192, 32, 38, 1) 49.3%, rgba(0, 0, 0, 0.0) 49.3%), url(/img/bulb-2-new.jpg);*/
	background: url(/img/background-home.png);
	
    min-height: auto;
	
    background-position: bottom;
    overflow: hidden; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;box-shadow: 1px 1px 5px 1px #444; 
}
.home-intro h2 {
	font-family: font4; font-size: 30px; line-height: 55px; color: #000;text-shadow: 2px 2px 1px #fff;
}
.home-intro h2 u {
	color: #c02026;
}
.home-intro h3 {
	font-family: monospace; font-size: 20px; color: #000; line-height: 40px;         background: white;
}
.home-intro p {
	font-family: monospace; font-weight: 600; color: #fff; line-height: 35px; font-size: 25px;text-shadow: 1px 1px 3px #000; padding: 10px 150px 10px 50px;
}
.home-intro .infograph {
	padding: 50px; 
}
.home-intro mark {
	padding: 10px; font-size: 17px; background: #c02026; color: #fff; font-family: font4; font-weight: 500; text-transform: uppercase;
}
.home-intro mark:hover {
	box-shadow: 0px 0px 0px 25px #c02026; transition: .5s;
}
.motion1 {
	/*background: linear-gradient(107deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.7524350804775035) 49%, rgba(192, 32, 38, 1) 49%, rgba(192, 32, 38, 1) 49.3%, rgba(0, 0, 0, 0.0) 49.3%), url(/img/electrical-1.jpg);*/
	background: linear-gradient(107deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.7524350804775035) 49%, rgba(192, 32, 38, 1) 49%, rgba(192, 32, 38, 1) 49.3%, rgba(0, 0, 0, 0.0) 49.3%), url(/img/led-gallery/led-gallery-3.jpeg);
	
	background-size: cover;
	padding: 100px 0 150px 0;
}
.motion1 .carousel {
  --current-slide: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 10px 3px #000;
}
.motion1 .carousel-button {
  /* vertically centering the buttons */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  padding: 0;
  margin: 0.5rem;
  margin-left: 20px;
	height: 35px;
	width: 35px;
  border-radius: 100%;
	line-height: 0.9;
	color: rgb(83,82,82);
  background-color: transparent;
  border: none;
  font-size: 50px;
  cursor: pointer;
  transition: color 0.1s;
}
.motion1 .carousel-button:hover {
  color: rgba(0, 0, 0, 0.5);
	border: none;
}
.motion1 .carousel-button.active {
	border: none !important;
}
.motion1 .carousel-button_next {
  right: 0;
  margin-right: 35px;
	border: none;
}
.motion1 .slides {
  display: flex;
  transition: transform 0.5s;
  transform: translateX(calc(-100% * var(--current-slide)));
}
.motion1 .slide {
    flex: 0 0 100%;
    background: #f5f5f5;
    /* margin-bottom: -75px; */
    padding: 50px 75px 25px 75px;
    max-width: 100%;
}
.motion1 h2 {
	font-family: monospace;
	color: #c02026; text-align: center;
	font-size: 25px;
}
.motion1 span {
	color: rgb(196,41,56);
}
.motion1 span:hover {
	color: #0009;
}
.motion1 h3 {
	font-family: font4; font-size: 50px; text-align: center; padding-bottom: 75px;text-shadow: 2px 1px 1px #fff;
}
.motion1 p i {
	font-size: 25px; color: #c02026;
}
.motion1 .slide p {
  color: rgb(150,150,150);
	font-family: 'font2';
	text-align: center;
	font-size: 15px;
	font-weight: 600;
}
.home1 {
	padding: 0px 0px 200px 0px; background: #EAE8E8;
}
.home1 .plax1 {
	/*background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/el-3.jpg");*/
	background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/led-gallery/led-gallery-42.jpeg");

	
    min-height: auto;
   background-attachment: fixed;
    background-position: center;
    overflow: hidden;
    padding:  50px; height: 100%; width: 103%;
    background-repeat: no-repeat;
    background-size: cover;
}
.home1 .spanner {
	padding: 100px 25px 100px 25px;
}
.home1  .push {
	padding: 15px; margin-left: 0;
}
.home1 .push:hover {
	 transition: 0.1s; background: #ffffffb3;
}
.home1 .push img {
	
}
.home1 .push:hover img {
	box-shadow: 1px 1px 10px 1px #000;
}
.home1 .push:hover h2 {
	margin-left: 0; color: #c02026; transition: 0.1s; font-weight: 600; text-decoration: overline;
}
.home1 iframe {
	opacity: 50%;
}
.home1 .pad {
	padding: 50px 20px 50px 20px; background: #fff; height: 100%; box-shadow: 10px -10px 0px 0px #c02026; border: 3px solid #444; border-left-width: 5px; border-top-width: 5px; 
}
.home1 h1 {
	font-family: 'font4'; font-size: 40px; text-align: center; font-weight: 500; color: rgb(196,41,56);
}
.home1 h2 {
	font-size: 20px; font-family: monospace; padding: 25px 0px 10px 0px; color: #fff; text-shadow: 1px 1px 1px #000; text-align: center;
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600; text-align: center; color: rgb(150,150,150); line-height: 35px;
}
.home1 h1 span {
	color: rgb(83,82,82); font-size: 30px; text-shadow: 2px 2px 1px #000;
}
.home1 h1 strong {
	 font-size: 40px;
}
.home1 img {
	    background: #fff;
    border-radius: 50%;
    padding: 10px; margin: 5px 0px 5px 0px;
    border: 3px solid #c02026;
}
.home1 hr {
	background: #fff;
}
.home2 {
	background: #f5f5f5; padding: 150px 0px 150px 0px;
}
.home2 h4 {
	font-family: monospace; font-weight: 600; font-size: 30px; text-align: center; color: #c02026;
}
.home2  p {
	font-family: font2; line-height: 35px; font-size: 17px; text-align: center; font-weight: 600;
}
.home2 .boxer {
	padding: 75px 25px 0px 25px; background: #fff; height: 100%;
}
.home2 img {
	max-width: 100%; margin-top: 75px;
}
.home2 .plax2 {
	/*background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/electrical-3.jpg");*/
	background-image: linear-gradient(rgb(0,0,0,0.3), rgb(11,11,11,0.1)), url("/img/led-gallery/led-gallery-54.jpeg");

	
	min-height: auto;
   background-attachment: fixed;
    background-position: center;
    overflow: hidden;
    padding: 150px 50px 70px 50px; 
    background-repeat: no-repeat;
	height: 100%;
    background-size: cover;box-shadow: 1px 1px 5px 1px #444; 
}
.home2 .plax2:hover {
	background: #fff;height: 100%;
}
.home2 .plax2 h3 {
	font-family: font4; padding: 10px; background: #fff200; text-align: center; transform: rotate(320deg);
    margin-left: -165px;
    margin-top: -75px;
    
}
.home2 .plax2:hover h3 {
	transform: rotate(0deg);
    margin-left: 0px;
    margin-top: -50px;
	padding: 10px; background: #c02026; color: #fff; transition: 1s; width: 75%; margin-left: 50px;
}
.home2 .plax2 h5 {
	color: transparent; font-size: 20px; font-family: font2; font-weight: 600;
}
.home2 .plax2:hover h5 {
	color: #000; margin-top: 15px;
}
.home2 .plax2:hover h5 span {
	color: #c02026;
}
.home2 .plax2  p {
	font-family: font2; line-height: 35px; font-size: 17px; color: transparent; text-align: center;
}
.home2 .plax2:hover p {
	color: #000;
}
.home2 .plax2 img {
	max-width: 25%;
}
.home2 .plax2:hover img {
	display: none;
}
.home3 {
	padding:180px 25px 180px 25px ; 	background-image: linear-gradient(rgb(0,0,0,0.0), rgb(11,11,11,0.0)), url("/img/collage-led-22.jpg"); background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed;
}
.home3 h3 {
	font-family: font4; font-size: 35px; color: #c02026;
}
.home3 p {
    line-height: 35px;
    font-family: font2;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
}
.home3 i {
	font-size: 100px; color: #c02026; margin-top: 50px; margin-left: 25px;
}
.home3 hr {
	background: #c02026; height: 2px;
}
.home3 .padder {
	padding: 25px; background: #fff; height: 100%; border: 1px solid #c02026;
}
.home3 .padder:hover {
	padding: 25px; background: #c02026; height: 100%; border: 1px solid #fff;
}
.home3 .padder:hover h3 {
	color: #fff;
}
.home3 .padder:hover p {
	color: #fff;
}
.home3 .padder:hover i {
	color: #fff;
}
.home4 {
	padding: 100px 00px 100px 0px; background: #f5f5f5;
}
.home4 .boxed {
	padding: 75px 5px 75px 15px; background: #fff;
}
.home4 h3 {
	font-size: 20px; font-family: font4; font-weight: 500; line-height: 50px; padding: 10px 5px 10px 5px;
}
.home4 h3:hover {
	background: #0009; color: #fff200;
}
.home4 p {
	color: #000; font-family: font2; font-weight: 600; font-size: 15px; line-height: 35px; text-align: center; margin-left: 0; padding: 0px 35px 0px 35px;
}
.home4 mark {
	padding: 15px; background: #c02026; font-family: monospace; color: #fff; font-size: 20px; margin-left: 15px;
}
.home4 mark:hover {
	box-shadow: 0px 0px 0px 15px #c02026; transition: .5s;
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.home4 .pad {
    padding: 25px;
    position: relative;
    background: linear-gradient(270deg, rgb(0 0 0 / 0%) 100%, #1d1b1bbf 100%, #1d1b1bbf 101.9%, rgb(0 0 0 / 0%) 99.9%);
	}
.home4  h2 {
	font-weight: 500; color: rgb(255,255,255); font-size: 40px; text-shadow: 0px 0px 5px #000; font-family: monospace; text-align: center; padding: 0px 0px 25px 0px;
}
.home4  h2 span {
	font-family: font4; font-size: 60px; padding: 0px 5px 0px 5px;  margin-left: 10px;
}
.home4 .pad h4 {
	font-weight: 500; color: rgb(255,255,255); font-size: 25px; text-shadow: 0px 0px 5px #000; font-family: monospace; text-align: left; line-height: 50px;
}
.home4 .pad h4 span {
	color: #fff200; font-size: 30px;
}
.home4 .emergency {
	/*padding: 200px 0px 200px 35px;background: linear-gradient(90deg, rgba(0, 0, 0, 0) 18%, rgba(242, 242, 242, 1) 18%, rgba(255, 255, 255, 0.75) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/emergency-2.jpg);*/
	padding: 200px 15px 200px 15px;
	/*background: linear-gradient(90deg, rgba(0, 0, 0, 0) 18%, rgba(242, 242, 242, 1) 18%, rgba(255, 255, 255, 0.75) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/led-gallery/led-gallery-55.jpeg);*/
	background: linear-gradient(252deg, rgb(255 255 255 / 22%) 18%, rgb(255 255 255) 100%, rgba(255, 255, 255, 0.75) 50%, rgba(0, 0, 0, 0.029746004847251428) 50%), url(/img/led-gallery/led-gallery-55.jpeg);
	
	
	background-size: cover; background-repeat: no-repeat; background-position: top; /*background-attachment: fixed;*/ height: 100%;
}
.my-class {
    -webkit-animation:name 7.5s infinite;
}

@keyframes name {
    0% {color:#fff;}
    20%{color:#fff}
	40% {color:#fff;}
	60% {color:#fff;}
	80% {color:#fff;}
	 100%{color:#fff200}
}
.PULSE {
   /* Chrome, Safari, Opera */
  -webkit-animation: PULSE 3s infinite; 
  animation-delay: 5s;
  /* Internet Explorer */
  -ms-animation: PULSE 3s infinite;
  
  /* Standard Syntax */
  animation: PULSE 3.25s infinite; 
}

/* Chrome, Safari, Opera */
@-webkit-keyframes PULSE{
   0%{color:#fff200;}	
	110%{color: black;}
}

/* Internet Explorer */
@-ms-keyframes PULSE{
   0%{color:#fff200;}	
	110%{color: black;}
}

/* Standard Syntax */
@keyframes PULSE{
  0%{color:#fff200;}		
	110%{color: black;}
}
.PULSE2 {
   /* Chrome, Safari, Opera */
  -webkit-animation: PULSE2 3s infinite; 
  animation-delay: 5s;
  /* Internet Explorer */
  -ms-animation: PULSE2 3s infinite;
  
  /* Standard Syntax */
  animation: PULSE2 3.25s infinite; 
}

/* Chrome, Safari, Opera */
@-webkit-keyframes PULSE2{
   0%{color:#fff200;}	
	110%{color: black;}
}

/* Internet Explorer */
@-ms-keyframes PULSE2{
   0%{color:#fff200;}	
	110%{color: black;}
}

/* Standard Syntax */
@keyframes PULSE2{
  0%{color:#fff200;}		
	110%{color: black;}

}
.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: auto;
    color: white;
    font-size: 12px;
    font-family: font2;
    font-weight: 600;
    background-color: #c02026;
    padding: 15px;
    margin-top: -45px;
	
	/*This is due to space constraints on mobile phones*/
	display: none;
}
.tooltip-text h4 {
	font-family: font4; font-size: 20px;
}
.hover-text:hover .tooltip-text {
  visibility: visible;
}

#top {
  top: -40px;
  left: -50%;
}

#bottom {
  top: 25px;
  left: -50%;
}

#left {
  top: -8px;
  right: 120%;
}

#right {
  top: -8px;
  left: 120%;
}

.hover-text {
  position: relative;
  display: inline-block;
  /*margin: 40px;*/
  font-family: Arial;
  text-align: center;
}



.video .pad p {
	margin-top: 0% !important; color: rgb(255,255,255); text-shadow: 0px 0px 5px #000; font-size: 20px; font-family: 'font2'; text-align: left; font-weight: 600; line-height:40px;
}
.video .pad a {
	font-size: 16px; color: rgb(255,255,255); font-family: 'Arial'; font-weight: 600; border: 1px solid rgb(12,32,63); padding: 15px 30px; border-radius: 1.6rem; background: rgb(12,32,63);
}
.video .pad a:hover {
	color: rgb(255,255,255); border: 1px solid rgb(255,255,255); background: transparent;
}
.video .pad  hr {
	background: #c02026; height: 2px;
}
.home-split1 {
	padding: 50px 0px 50px 0px; color: #c02026; text-align: center; background: #c02026; border: 15px solid #000; border-top: 5px solid #000; border-bottom: 5px solid #000;
}
.home-split1 h3 {
	font-family: font5; font-size: 50px;
}
.home-split1 h5 {
	font-size: 50px; font-weight: 300; color: #000;
}
.home-split1 h6 {
	font-family: 'font4'; letter-spacing: 2px; font-size: 20px; color: #000; text-transform: uppercase;
}
.home-split1 .liner {
	background: #fff; width: 10%;
}
.home-split1 .hexer {
  padding:  50px; box-shadow: 1px 1px 10px -2px #000; margin-top: -100px; margin-bottom: -100px; background: #fff; background-size: cover;
    min-height: auto;
    background-attachment: fixed; position: relative; z-index: 1; border: 7px solid #000;
}


/**** About Section ****/

.about1 {
	padding: 200px 15px 0px 15px;
}
.about1 .icon {
padding: 150px 150px 150px 250px;
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(11 11 11 / 0%)), url(/img/led-icon.png);
    background-repeat: no-repeat;
    background-size: 25%;
    min-height: auto;
    height: 100%;
    background-position: left;
}
.about1 h1 {
	font-family: font4; font-size: 30px;  margin-left: 0; margin-right: -0; text-align: center;
}
.about1  h2 {
	font-family: monospace; font-size: 35px; text-align: center;
	
}
.about1 h1 span {
	 font-size: 55px; color: #000;
}
.about1 h1 strong {
	color: #c02026;
}
.about1 h2 span {
	color: #000; 
}
.about1 h2 strong {
	color: #c02026;
}
.about1 h4 {
	    font-family: font4;
    font-size: 40px;
	text-align: center;
}
.about1 h5 {
	text-align: center;
}
.about1  p {
	font-family: font2; font-size:17px; text-align: center; line-height: 35px; font-weight: 600;
}
.about1 hr {
	width: 93.5%;
    margin: 0px;
    background: #c02026;
    height: 5px;
    opacity: 100%;
    margin-bottom: -5px;
}
.about1 .cardy1 {
	    padding:50px 15px 50px 15px;
/*background: linear-gradient(270deg, #ffffff80 0%, #ffffff80 20%, #ffffff80 20%, #ffffff80 33%, #ffffff80 50%, #ffffff80 64%, rgba(255, 255, 255, 0.5) 80%, #ffffff80 80%, #ffffff80 100%), url(/img/electrical-boom-1.jpg); border-top: 15px solid #c02026;*/
background: linear-gradient(270deg, #ffffff80 0%, #ffffff80 20%, #ffffff80 20%, #ffffff80 33%, #ffffff80 50%, #ffffff80 64%, rgba(255, 255, 255, 0.5) 80%, #ffffff80 80%, #ffffff80 100%), url(/img/led-gallery/led-gallery-56.jpeg); border-top: 15px solid #c02026;


border-bottom: 15px solid #c02026;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: auto;
    height: 100%;
    background-position: top right;
}
.about1 .cardy2 {
padding: 75px 35px 125px 35px; background: linear-gradient(36deg, rgba(0, 0, 0, 0) 21%, rgba(192, 32, 38, 1) 21%, rgba(192, 32, 38, 1) 21.3%, rgb(255 255 255) 21.3%, rgb(255 255 255 / 82%) 56%, rgba(192, 32, 38, 1) 56%, rgba(192, 32, 38, 1) 56.3%, rgba(0, 0, 0, 0) 56.3%), url(/img/electrical-boom-2.jpg); background-repeat: no-repeat; background-size: cover; 
    min-height: auto; height: 100%;
    
    background-position: top right;
}
.about1 .cardy3 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy4 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy5 {
	padding: 35px 15px 35px 15px; margin: 0px 25px 0px 25px; background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(11, 11, 11, 0.1)), url(/img/el-2.jpg); background-repeat: no-repeat; background-size: cover;
    min-height: auto; height: 100%;
    background-attachment: fixed;
    background-position: center;
}
.about1 .cardy1 hr {
	background: #000; height: 2px;  margin: 1rem 0; opacity: .25; width: 100%;
}
.about1 .popper {
	padding: 25px; margin-left: 100px;
	 margin-right: -100px;
}
.about1  .popper2 {
	padding: 25px; 
}
.about1  .popper3 {
	    margin-top: 620px;
    margin-left: -105px;
    margin-right: 105px;

}
.about1 img {
	max-width: 75%; margin-bottom: 50px;
}
/**** Services Section ****/
.electric-services {
	box-shadow: 1px 1px 10px 3px #000;
}
.electric-services h1 {
	font-family: 'font4'; font-weight: 500; font-size: 45px; letter-spacing: 3px; color: #c02026; text-shadow: 1px 1px 1px #444; line-height: 60px;
}
.electric-services h1 span {
	font-size: 20px; font-family: 'font2'; font-weight:600; line-height: 50px;
}
.electric-services h2 {
	font-family: 'font2'; font-weight: 600; font-size: 35px; letter-spacing: 3px; text-transform: uppercase;
}
.electric-services h3 {
	font-family: 'font5'; font-weight: 500; font-size: 17px; letter-spacing: 3px; background: linear-gradient(90deg, rgba(51,108,133,1) 0%, rgba(133,169,186,1) 25%, #9dc6d9 50%, rgba(133,169,186,1) 75%, rgba(51,108,133,1) 100%);
    padding: 25px 10px 25px 10px;
    margin-top: -50px;
    margin-bottom: 0px;
    width: 110%; color: #fff;
    margin-right: 50px;
    margin-left: -100px;
    box-shadow: 1px 1px 5px 3px #000; text-align: center;
}
.electric-services h3 span {
	font-size: 17px; font-family: 'font2'; font-weight:600;
}
.electric-services p {
	font-size: 17px; font-family: 'font2'; line-height: 35px; 
}
.electric-services mark {
	padding: 15px;
    font-size: 20px;
    font-family: 'font2';
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #444;
    background: #6c98ac94;
}
.electric-services mark:hover {
	background: #6c98ac; color: #fff; text-shadow: 1px 1px 3px #000;
}
.electric-services a {
	color: inherit;
}
 .boxer {
	padding: 75px 50px 75px 50px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
 .boxer-2 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-2:hover {
	    background: #9dc6d9; color: #fff;
}
.boxer-2:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
.boxer-2:hover p {
	text-shadow: 3px 3px 7px #444;
}
 .boxer-3 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-3:hover {
	    background: #6c98ac; color: #fff;
}
.boxer-3:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
 .boxer-4 {
	padding: 15px; background: #fff9; box-shadow: 1px 1px 10px 3px #000;
}
.boxer-4:hover {
	    background: #44788f; color: #fff;
}
.boxer-4:hover h3 {
	text-shadow: 1px 1px 1px #444;
}
.parallax-service-1 {
background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.5) 10%, rgba(255,255,255,1) 34%, rgba(255,255,255,0.9092978255755427) 50%, rgba(255,255,255,1) 64%, rgba(255,255,255,0.5) 100%, rgba(192,32,38,0.5) 80%, rgba(192,32,38,0.5) 100%), url("/img/electrical-4-new.jpg");
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
text-align: center;
	overflow: hidden;
	padding: 185px 25px 50px  25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.residential-electrical {
	padding: 150px 0px 150px 50px; background: #6c98ac; 
}
.parallax-service-2 {
  background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-2-new.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 100px 20px 100px 20px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.parallax-service-2 h2 {
	font-size: 45px; font-family: 'font4'; text-align: center; color: #c02026; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 75px;
}

.parallax-service-2 p {
    font-size: 17px;
    line-height: 35px;
    font-family: 'font2';
    margin: 0px 10px 0px 10px;
}
.parallax-service-2 img {
    margin-top: 30px;
}
.parallax-service-3 {
 background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-inspection-1.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 25px 150px 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-service-3 h2 {
	font-size: 25px; font-family: 'font5'; text-align: left; color: #6c98ac; letter-spacing: 3px; text-shadow: 1px 1px 1px #000; padding-bottom: 25px;
}
.parallax-service-3 p {
	font-size: 17px; line-height: 35px; font-family: 'font2';
}
.parallax-service-3 img {
	box-shadow: 1px 1px 10px 3px #000; max-width: 75%; margin-top: 50px; margin-left: 75px;
}
.parallax-service-4 {
 background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%), url(/img/electrical-generator-1.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 25px 150px 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-service-4 h2 {
	font-size: 25px; font-family: 'font5'; text-align: left; color: #6c98ac; letter-spacing: 3px; text-shadow: 1px 1px 1px #000; padding-bottom: 25px;
}
.parallax-service-4 p {
	font-size: 17px; line-height: 35px; font-family: 'font2';
}
.parallax-service-4 img {
	box-shadow: 1px 1px 10px 3px #000; max-width: 75%; margin-top: 50px; margin-right: 75px;
}
.tab {
  overflow: hidden; background-color: #fff; font-family: 'font2';
  /*display: inline-grid;*/
  display: revert-layer;
  height: 100%;    height: auto; border: 5px solid #c02026; border-right: 5px solid #c02026; border-top: 5px solid #c02026;
}
.tab button {
  background-color: inherit; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px; font-family: 'font2'; text-align: left; line-height: 35px;
}
.tab button:hover {
  background-color: #c0202694; color: #fff;
}
.tab button.active {
  background-color: #c02026; color: #fff;
}
.tab2 {
  overflow: hidden; background-color: #fff; font-family: 'font2'; display: inline-grid; height: 100%;  height: 575px; border: 5px solid #c02026; border-left: none;
}
.tab2 button {
  background-color: inherit; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px; font-family: 'font2'; text-align: left; line-height: 35px;
}
.tab2 button:hover {
  background-color: #c0202694; color: #fff;
}
.tab2 button.active {
  background-color: #c02026; color: #fff;
}
.tabcontent {
  display: none; padding: 25px; border: 3px solid #444; background: #fff;
  /*height: 575px;*/

  height: 100%;
  box-shadow: 15px -15px 0px 0px #c02026;
}
.tabcontent h3 {
	padding-top: 20px; padding-bottom: 20px; font-family: 'font4';	text-align: left;	font-size: 1rem; color: #c02026; letter-spacing: 3px; font-weight: 600;
}
.tabcontent p {
	font-family: font2; font-weight: 600; font-size: 14px; line-height: 35px;
}
.tabcontent img {
 box-shadow: 1px 1px 10px 1px #000;margin-top: -0;
}
.cardy-1 {
	background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgb(255 255 255 / 85%) 25%, rgba(170,195,207,0.61237905806854) 50%, rgba(133,169,186,0.7832474054074755) 75%, rgba(51,108,133,0.9149000664719013) 100%); padding: 50px 25px 50px 25px; box-shadow: 1px 1px 10px 3px #000;
}
.cardy-2 {
	background: linear-gradient(1deg, rgba(255,255,255,1) 0%, rgb(255 255 255 / 85%) 25%, rgba(170,195,207,0.61237905806854) 50%, rgba(133,169,186,0.7832474054074755) 75%, rgba(51,108,133,0.9149000664719013) 100%); padding: 50px 25px 50px 25px; box-shadow: 1px 1px 10px 3px #000;
}







.home-splitter {
	background:  #c02026; padding: 20px; text-align: center;
}
.home-splitter h2 {
	font-family: monospace;  color: #fff; font-size: 35px; color: #fff; letter-spacing: 2px;
}
.home-splitter mark {
	background: #fff; border-radius: 7px; color: #c02026; padding: 10px; font-size: 20px; font-family: 'font2'; font-weight: 600; text-transform: uppercase; border: 7px double #c02026;
	display: inline-block;
}
.home-splitter mark:hover {
	box-shadow: 1px 1px 5px 1px #000;
}
.home-splitter p {
	line-height: 35px; font-size: 17px; font-family: 'font2'; color: #fff;
}
.home-splitter hr {
	background: #fff;
}




/*PANELS PAGE*/
.panels-section {
  /*background: #f5f5f5;*/
  
  background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.5) 5%, rgba(255,255,255,1) 20%, rgba(255,255,255,0.9092978255755427) 50%, rgba(255,255,255,1) 88%, rgba(255,255,255,0.5) 100%, rgba(192,32,38,0.5) 80%, rgba(192,32,38,0.5) 100%), url("/img/panels-001.png");
  min-height: auto;
  background-attachment: fixed;
  background-position: center center;
	overflow: hidden;
	padding: 250px 2px 150px 2px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.panels-section h1 {
	font-size: 30px; font-family: 'font4';  color: #0067b2; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 25px;
	text-align: center;
}

.panels-section span {
    font-weight: 900;
    text-decoration: underline;
    text-shadow: 0 0 black;
}
.panels-section h2 {
	font-weight: 700;
	text-align:center;
	font-size: 1.65rem;
}
.panels-section h3 {
	font-weight: 700;
	text-align:center;
}
.panels-section p {
	font-size: 17px; line-height: 35px; font-family: 'font2'; margin: 0px 10px 0px 10px; font-weight: bold;
}
.panels-section hr {
	height: 5px; background: #f54045;
}
.panels-section .pad {
	padding:45px 10px;
	background: white;
	border: 2px solid #0067b2;
}
.panels-section .red {

	background: #c02026;
	color: white;
}
.panels-section .blue {

	background: #0067b2;
	color: white;
}
.panels-section li {
	font-family: monospace; font-size: 20px; letter-spacing: 1px; line-height: 60px; list-style-type: '☑'; 
}
.panels-section li p{
	font-size:1.2rem;
}
.panels-section li p span{
	font-size:1.3rem; font-weight: 900; text-decoration:underline;
}
.panels-section img {
	margin-top: -200px;
}
/*PANELS PAGE END*/


/*FINANCING PAGE*/
.financing-section {
  background: #f5f5f5;
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 150px 2px 150px 2px;
  background-repeat: no-repeat;
  background-size: cover; border-top: 15px solid #c02026;
}
.financing-section h2 {
	font-size: 50px; font-family: 'font4';  color: #0067b2; letter-spacing: 3px; text-shadow: 1px 1px 1px #444; padding-bottom: 25px;
	text-align: center;
}
.financing-section h3 {
	font-weight: 700;
	text-align:center;
}
.financing-section p {
	font-size: 17px; line-height: 35px; font-family: 'font2'; margin: 0px 10px 0px 10px; font-weight: bold;
}
.financing-section hr {
	height: 5px; background: #f54045;
}
.financing-section .pad {
	padding:45px 10px;
	background: white;
	border: 2px solid #0067b2;
}
.financing-section li {
	font-family: monospace; font-size: 20px; letter-spacing: 1px; line-height: 60px; list-style-type: '☑'; 
}
.financing-section li p{
	font-size:1.2rem;
}
.financing-section li p span{
	font-size:1.3rem; font-weight: 900; text-decoration:underline;
}
.financing-section img {
	margin-top: -200px;
}
/*FINANCING PAGE END*/

/**** Gallery Section ****/
.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}

/**** Areas We Service Section ****/
.area:nth-child(odd) {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.area:nth-child(even) {
	padding: 75px 0 75px 0; background: rgb(245,245,245);
}
.area h2 {
	font-size: 2.5rem; font-family: font2; font-weight: 800; color: rgb(196,41,56);
}
.area h4 {
	font-size: 1.5rem; font-family: font2; color: rgb(75,75,75);
}
.area p {
	font-size: 17px; text-align: justify; color: rgb(12,12,12);
}
.area iframe {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);
}

/**** Contact Section ****/


/**** Sections On Every Page ****/
.home-contact {
	padding: 
}
.parallax4 {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(192, 32, 38, 1) 0%, rgba(192, 32, 38, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 38%, rgb(255 255 255 / 88%) 45%, rgba(255, 255, 255, 1) 53%, rgb(255 255 255) 60%, rgb(255 255 255 / 79%) 100%, rgba(192, 32, 38, 1) 87%, rgba(192, 32, 38, 1) 88%, rgba(0, 0, 0, 0) 88%), url(/img/electrical-4-new.jpg);
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 75px 20px 75px 20px;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-section {
	padding: 50px 0 50px 0;
}

.home-contact  h1 {
	font-size: 35px; font-family: monospace; font-weight: 800; color: #000; text-align: center;
}
.home-contact  h1 span {
font-size: 2.3rem;color: #c02026; text-align: center;
}
.home-contact  h3 {
	font-size: 35px; font-family: monospace; font-weight: 800; color: #000; text-align: center;
}
.home-contact  h3 span {
font-size: 2.3rem;color: #c02026; text-align: center;
}
.home-contact p {
		font-family: font2; font-weight: 600; font-size: 17px; line-height: 35px; text-align: center;
}


/**** About Section ****/


/**** Services Section ****/


/**** Gallery Section ****/
.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}

/**** Areas We Service Section ****/
.area:nth-child(odd) {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.area:nth-child(even) {
	padding: 75px 0 75px 0; background: rgb(245,245,245);
}
.area h2 {
	font-size: 2rem; font-family: monospace; font-weight: 800; color: rgb(196,41,56);
	text-align: center;
}
.area h4 {
	font-size: 1.2rem; font-family: monospace; color: rgb(75,75,75);
	text-align: center;

}
.area p {
	font-size: 17px; text-align: center; color: rgb(12,12,12);
	
}
.area iframe {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px #0067b2;
}

/**** Contact Section ****/


/**** Sections On Every Page ****/
.contact-section {
	padding: 50px 0 50px 0;
}
.contact-section h3 {
	font-size: 2rem; font-family: font2; font-weight: 800; text-align: center; color: rgb(12,12,12);
}

/**** Sections On Every Page ****/
.home-contact {
	border-top: 15px solid #c02026;border-bottom: 15px solid #c02026;
}
.parallax4 {
    background: white; 
  min-height: auto;
  background-attachment: fixed;
  background-position: bottom;
	overflow: hidden;
	padding: 75px 10px 75px 10px;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-section {
	padding: 50px 0 50px 0;
}
.home-contact  h3 {
	font-size: 35px; font-family: monospace; font-weight: 800; color: #000;
}
.home-contact  h3 span {
	font-family: 50px; font-size: 3rem;color: #c02026;
}
.home-contact  h4 {
	font-size: 22px; font-family: monospace; font-weight: 800; color: #000;
	text-align: center; 
}
.home-contact  h4 span {
	 font-size: 2rem;color: #c02026;
}
.home-contact p {
		font-family: font2; font-weight: 600; font-size: 17px; line-height: 35px;
}

/* ========================================== */
/* === Footer Section ======================= */
/* ========================================== */
.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: white; color: black; font-size: 18px; font-weight: 400;
}
.footer-section .pushy {
	margin-left: 0; margin-right: -0; margin-top: 0;
}
.footer-section h3 {
	font-size: 1.3rem; color: rgb(30,30,30); font-weight: bold;
}
.footer-section p {
	color: black; font-size: 15px; font-family: 'font2';
}
.footer-section a {
	color: black; font-size: 16px;
}
.footer-section .service-cities p {
	margin: 0 0 3px;
}
.service-cities {
	margin-bottom: 1em;
}
.service-cities img {
	padding-bottom: 20px;
}
.service-cities h5 {
	font-size: 17px; font-family: monospace;
	text-align: center; 
}
.service-cities h5 span {
	color: #fff200;
}
.service-cities h4 {
	font-size: 20px; font-family: 'font4'; font-weight: 600; text-decoration: underline; color: black;
}
.service-cities h3 {
	font-size: 30px; font-family: 'font4'; font-weight: 600; text-align: center; color: black; padding-bottom: 25px;
}
.bottom-footer {
 padding: 25px 0px 10px 0px; background: #c02026;
}
.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 #fff; 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;
}
.trademark-disclaimer {
	padding: 10px 0; margin-bottom: -10px;  background: #000;
}
.trademark-disclaimer p {
	font-size: 8px; text-align: center; color: #fff;
}

/**** Misc. Section ****/
.btn {
	background: rgb(249,78,1); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.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;
}
.alert-dismissible .close {
	position: absolute; top: 0; right: 0; background: transparent; border: none; padding: 0.75rem 1.25rem; color: rgb(80,80,80); font-family: 'font2'; outline: none; z-index: 3;
}
.alert-dismissible .close span {
	font-size: 35px;
}
.lnr {
	display: inline-block; fill: currentColor; width: 1em; height: 1em; vertical-align: -0.2em; cursor: pointer;
}

}
/* === Sm. Mobile CSS Section ================= */
@media screen and (max-width: 375px) {

}