/* ========================================== */
/* === 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. Testimonials Section =========== */
/* ===    g. Contact Section ================ */
/* ===    h. 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-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');
}

/* ======================================== */
/* === Top Header Section ================= */
/* ======================================== */

.mcbryde-sticky {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999999;
}

/* Avatar Button */
.mcbryde-avatar-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000;
  border: 3px solid rgb(181 199 255 / 73%);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-out;
  box-shadow: 0 0 18px rgba(0,0,0,0.45);
}

.mcbryde-avatar-btn img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  z-index: 2;
  transition: transform .2s ease-out;
}

/* Hover Growth */
.mcbryde-avatar-btn:hover {
  transform: scale(1.18);
}
/* Shrink avatar for text */
.mcbryde-avatar-btn:hover img {
  transform: scale(.85);
}

/* Hover text */
.hover-text {
  position: absolute;
  bottom: -10px;
  color: #000;
  background: rgb(181 199 255 / 73%);
  padding: 10px 7px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transition: all .25s ease-out;
  z-index: 3;
}
.mcbryde-avatar-btn:hover .hover-text {
  opacity: 1;
  bottom: 16px;
}


/* Menu restored to original “stronger” design */
.mcbryde-menu {
  position: absolute;
  bottom: 92px;
  right: 0;
  width: 325px;
  padding: 18px;
  background: #111;
  border: 3px solid rgb(181 199 255 / 73%);
  border-radius: 16px;

  color: #fff;
  opacity: 0;
  transform: scale(.6) translateY(10px);
  transform-origin: bottom right;
  transition: all 0.26s cubic-bezier(0.22, 1, 0.36, 1);

  box-shadow: 0 18px 35px rgba(0,0,0,0.55);
}

/* Animated open state */
.mcbryde-menu.active {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Header */
.mcbryde-menu h4 {
  margin: 0 0 10px;
  color: rgb(181 199 255 / 73%);
  font-size: 23px;
  font-weight: 900; font-family: monospace; text-align: center;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Service List */
.mcbryde-menu ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 14px;
}
.mcbryde-menu ul li {
  margin-bottom: 8px;
}
.mcbryde-menu ul li a {
  color: rgb(181 199 255 / 73%);
  text-decoration: none;
  font-weight: 500; font-family: monospace;
  padding-left: 2px;
  transition: color .2s;
}
.mcbryde-menu ul li a:hover {
  color: #f9cb47;
}

/* Custom Bullet Symbol ▸ */
.mcbryde-menu ul li {
  position: relative;
  padding-left: 20px; /* space for bullet */
}

.mcbryde-menu ul li::before {
  content: "▸";
  color: #f9cb47;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}


/* CTAs */
.mcbryde-cta-links a {
  display: block;
  background: rgb(181 199 255 / 73%);
  color: #000;
  padding: 10px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.28);
  transition: all .22s ease;
}
.mcbryde-cta-links a:hover {
  background: #fff; color: rgb(181 199 255 / 73%);
}

/* Call now */
.mcbryde-cta-links .call-now {
  background: #000;
  color:rgb(181 199 255 / 73%);
  border: 2px solid rgb(181 199 255 / 73%);
}
.mcbryde-cta-links .call-now:hover {
  background: rgb(181 199 255 / 73%);
  color: #000;
}



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

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

.top-header {
	position: fixed; width: 100%; padding: 10px 0 10px 0; background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/ url(/img/homepage/electric-background-05.png);
    background-size: cover;
    background-color: #f9f9f9 !important;	z-index: 3; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease; border-bottom: 1px solid #000;
}
.top-header div[class*='col-']:first-child {
	display: flex; justify-content: flex-end; align-items: center;
}
.top-header div[class*='col-']:first-child a {
	padding: 0; font-size: 15px; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.top-header div[class*='col-']:first-child a:hover {
	background-color: transparent;
}
.top-header div[class*='col-']:nth-child(2) {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(3) a {
	padding: 9px 15px 9px 15px; background: /*#ffce00*/ rgb(24 53 143); font-weight: 500; font-family: Montserrat; color: #000; border-radius: .6rem; border: 1px solid #000;
	color:lightgray;
	
	display:inline-flex;
}
.top-header div[class*='col-']:nth-child(3) a:hover {
	background: rgb(181 199 255 / 73%); color: black;; border: 1px solid #ffc706;
}
.top-header div[class*='col-']:nth-child(4) {
	display: flex; justify-content: center; align-items: center;
	display:inline-flex;

}
.top-header div[class*='col-']:nth-child(4) a {
	padding: 9px 15px 9px 15px; background: #151a22; font-weight: 500; font-family: Montserrat; color: #fff; border-radius: .6rem; border: 1px solid #fff;
}
.top-header div[class*='col-']:nth-child(4) a:hover {
	color: #000; background:/* #ffc706*/rgb(125 157 255 / 57%); border:1px solid #151a22;
}
.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 {
	display: flex; justify-content: center; align-items: center; border: 1px solid rgb(255,255,255); color: rgb(255,255,255); background: #db4d20; border-radius:100px;	height: 34px; width: 34px; margin: 0 4px;
}
.top-header div[class*='col-']:nth-child(5) a:hover {
	background: #ffc706;	text-decoration:none !important; color: rgb(255,255,255); border:1px solid #151a22;
}
.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;
}
.dropdown .dropbtn {
	font-size: 16px; border: none; outline: none; color: white; padding: 14px 16px; background-color: inherit;font-family: inherit; margin: 0;
}
.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;
}
.tab {
	overflow: hidden; border: 1px solid #ccc; background-color: #f1f1f1; font-family: 'font2';
}
.tab button {
	background-color: inherit; float: left; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px;
}
.tab button:hover {
	background-color: #ddd;
}
.tab button.active {
	background-color: #ccc;
}
.tabcontent {
	display: none; padding: 6px 12px; border: 1px solid #ccc; border-top: none;
}
.tabcontent h3 {
	padding-top: 40px; padding-bottom: 40px; font-family: 'font'; text-align: center; font-size: 2rem; color: rgb(246,177,24);
}

.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; overflow-x: hidden;
}
.navbar-scroll {
	padding: 95px 0 0; position: fixed; background:/*#ffc706*/rgb(67,110,239); width: 100%; z-index: 2;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease; border-bottom: 2px solid #000;
}
.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 28px; padding: 6px 0px; font-weight: 600; font-size: 18px; color: white;; font-family: Montserrat;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav
.nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light
.navbar-nav .show>.nav-link {
	color: rgb(255,255,255);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #fff; text-shadow: 0px 0px 1px #000;
}
.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;
}
.home-header-section {
	padding-top: 125px;
}
.home-header-section .slider-logo span {
	font-family: 'font'; color: rgb(196,41,56);
}
/* Layout */
.showcase {
    position: relative;
    height: 975px;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* LEFT SIDE CONTENT */

.slide h2,
.slide p,
.slide .slide-ctas {
    opacity: 0;
}


.slide-content {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    width: 40%;
    color: #000;
}

.slide {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

/* Title */
.slide h2 {
    font-size: 2.4rem;
    margin-bottom: 12px; font-family: Montserrat;
    font-weight: 800;
}

/* Text */
.slide p {
    font-size: 17px;
    line-height: 35px; font-family: font2; font-weight: 600; letter-spacing: 1px;
    max-width: 90%;
}

/* CTAs */
.slide-ctas {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.btn.primary {
    background: /*#ffce00*/rgb(67,110,239);
    padding: 10px 24px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
		display: flex;
		justify-content: center;
		align-items:center;
}
.btn.primary:hover { background: /*#e0b500*/ rgb(67,110,239); }

.btn.secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
		display:flex;
		justify-content: center;
		align-items: center; 
}
.btn.secondary:hover {
    background: rgba(255,255,255,0.2);
}
.btn-blue{
	  background:white;

		
}

.btn-blue:hover{
	  background:rgb(102 139 255 / 79%);

		color:white;
}

.btn.secondary.black-letter{
	color:black;
}
/* OUTER ARROWS */
.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 3rem;
    color: #ffffff70;
    opacity: 0.85;
    cursor: pointer;
    user-select: none;
    padding: 10px 20px;
    transition: opacity .3s;
}

.showcase-arrow:hover { opacity: 1; }

.left-arrow { left: 20px; }
.right-arrow { right: 20px; }

/* DOTS ON BOTTOM */
.showcase-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 4; margin-bottom: 100px;
}

.showcase-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: white;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity .3s;
}

.showcase-dots span.active {
    opacity: 1;
}

.showcase-overlay {
      position: absolute;
    top: 10.5px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(255 245 245 / 75%) 45%, rgba(255, 255, 255, 0) 45%);
}

/* TYPEWRITER ANIMATION */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

/* CLEAN TYPEWRITER (no cursor) */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typewriter 1.8s steps(40) forwards;
    border-right: none !important; /* remove cursor */
}

/* Fade-out animation for entire slide */
.slide.fadeout {
    opacity: 0 !important;
    transition: opacity .6s ease;
}

/* Body fade-up */
.fade-up {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Floating CTAs */
.float-up {
    opacity: 0;
    transform: translateY(20px);
    animation: floatUp .8s ease forwards;
}

@keyframes floatUp {
    to {
        opacity: 1;
        transform: none;
    }
}
.slide {
    opacity: 0;
    transition: opacity .6s ease;
}

.slide h3 {
    padding: 15px 10px 15px 10px;
    position: absolute;
    background: #ffffff;
    text-align: center;
    display: block;
    margin-top: -85px;
    border-radius: 5px;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 22px;
    border: 10px solid /*#ffce00*/rgb(67,110,239);
}

.slide.active {
    opacity: 1 !important;
}

.slide.fadeout {
    opacity: 0 !important;
}

/* THUMBNAIL LINKS */
.slide-thumbs {
    margin-top: 125px;
    display: flex;
	padding: 50px;
	/*background: #ffc706;*/
	background: rgb(181 199 255 / 73%);
	border-radius: 5px; border: 2px solid #fff;
	/*background-image: radial-gradient(49% 81% at 45% 47%, #FFE20345 0%, #073AFF00 100%),conic-gradient(from 0deg at 17% -2%, #FFF500FF 1%, #FF000000 99%),radial-gradient(142% 91% at 83% 7%, #FFDB00FF 1%, #FF000000 99%),radial-gradient(142% 91% at -6% 74%, #FF0049FF 1%, #FF000000 99%),radial-gradient(142% 91% at 111% 84%, #FF7000FF 0%, #FF0000FF 100%);*/
    gap: 18px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
		
		
    display: grid;
    grid-template-columns: 1fr 1fr;

		
}

.slide-thumbs a {
    text-align: center;
    text-decoration: none;
    color: #000;
}

.slide-thumbs img {
    width: 150px;
    height: 125px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    transition: transform .3s ease;
}

.slide-thumbs a:hover img {
    transform: scale(1.05);
}

.slide-thumbs span {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.thumb-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}




.home1 {
     background-color: #fff !important;
    background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/url(/img/homepage/electric-pattern-01.png);
		
		
		/*background: linear-gradient(rgb(67 110 240 / 75%), rgb(67 110 240 / 85%)), url(/img/homepage/electric-pattern-01.png);*/
		
		background: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, rgb(255 255 255 / 0%) 25%, rgb(255 255 255 / 0%) 75%, rgba(255, 255, 255, 0) 75%), url(/img/homepage/sparse-cloud-bg.JPG);
    background-position: 50% 50%;
		
    background-size: cover;
}

.home1 .container {
	padding: 50px; background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/ url(/img/homepage/electric-background-05.png); border: 2px solid #000; border-bottom: none;
    background-size: cover; background-color: #f9f9f9 !important; border-top-right-radius: 25px; border-top-left-radius: 25px;
}

.home1 .pad {
	padding-top: 125px; text-align: center; padding-bottom: 50px;
}
.home1 h1 {
	font-family:  Montserrat; font-size: 25px;  font-weight: 800; color: /*#ffc706*/rgb(67,110,239); line-height: 45px;
}

.home1 h1 u {
	color: #db4d20;
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600;  color: rgb(150,150,150);line-height: 35px;
}
.home1 h1 span {
	font-size: 35px; color: #000;
}

.home1 .intro-image img {
	max-width: 35%;  position: relative;
}

/* SECTION */
.coverage-cards {
  padding: 200px 100px;
  background: url(/img/homepage/electric-background-05.png);
  background-size: cover;
  background-color: #f9f9f9 !important;
}

/* MAKE ALL TOP-LEVEL COLUMNS EQUAL HEIGHT */
.coverage-cards > .container-fluid > .row {
  display: flex;
}

.coverage-cards > .container-fluid > .row > [class*="col-"] {
  display: flex;
}

/* CARD */
.coverage-cards .cov-card {
  background: #fff;
  border-radius: 15px;
  border: 3px solid #000;
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
	transition: 0.3s;
}

.coverage-cards .cov-card:hover {
  /*background: #ffc706;*/
	background: rgb(125 157 255 / 57%);
  box-shadow: 1px 1px 10px 1px #000;
}

/* INNER ROW (IMAGE + CONTENT) */
.coverage-cards .cov-card .row {
  display: flex;
  flex: 1 1 0;
  align-items: stretch;
}

/* IMAGE + CONTENT COLUMNS */
.coverage-cards .cov-card .row > [class*="col-"] {
  display: flex;
}

/* IMAGE BLOCKS */
.coverage-cards .cov-card .cov-image1,
.coverage-cards .cov-card .cov-image2,
.coverage-cards .cov-card .cov-image3 {
  flex: 1 1 0;
  border-right: 3px solid #000;
  background-size: cover;
  background-repeat: no-repeat;
}

/* IMAGE SOURCES */
.cov-image1 {
  background-image: url(/img/homepage/emergency-electric-01.png);
}

.cov-image2 {
  background-image: url(/img/homepage/troubleshooting-01.jpg);
}

.cov-image3 {
  background-image: url(/img/homepage/inspection-01.png);
}

/* CONTENT */
.coverage-cards .cov-content {
  padding: 75px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverage-cards h3 {
  font-family: Montserrat;
  font-weight: 600;
	        font-size: 1.35rem;
}

.coverage-cards p {
  font-family: font2;
  font-size: 16px;
  line-height: 30px;
}


.home-choose {
	position: relative;
}

.home-choose .container-fluid {
	padding: 0px;
}

.home-choose h2 {
	font-family: Montserrat; font-weight: 600;
}

.home-choose h2 span {
	font-weight: 800;
}

.home-choose p {
	font-family: font2; font-size: 17px; line-height: 35px; font-weight: 600;
}

.home-choose .choose-content {
	padding: 200px 25px;
}

.home-choose .choose-image {
	 background: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, rgb(255 255 255 / 0%) 25%, rgb(255 255 255 / 0%) 75%, rgba(255, 255, 255, 0) 75%), url(/img/homepage/electrician-001.jpg);
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-right: 5px solid #000;
    box-shadow: 4px 0px 0px 0px rgba(245,179,1,0.5);
}

/* =========================
   POWER PROCESS STYLES
========================= */

:root {
  --pp-bg: #0e1116;
  --pp-card: #161b22;
  --pp-accent: #f5b301;
  --pp-text: #e6e6e6;
  --pp-muted: #9aa4b2;
  --pp-line: rgba(245,179,1,0.35);
}

.power-process {
  background: var(--pp-bg);
  color: var(--pp-text);
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.pp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pp-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.pp-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem; font-weight: 800;
}

.pp-header p {
  color: var(--pp-muted);
  font-size: 1.1rem;
}

/* Timeline */
.pp-timeline {
  position: relative;
}

.pp-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--pp-line),
    transparent
  );
  transform: translateX(-50%);
}

/* Steps */
.pp-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
  position: relative;
}

.pp-step.left .pp-card {
  grid-column: 1 / 2;    margin-left: 125px;
    border-left: 2px solid #fff; 
}

.pp-step.left:hover  .pp-number {
	color: rgb(67,110,239); transition: 2s;
}

.pp-step.right:hover  .pp-number {
	color: rgb(67,110,239); transition: 2s;
}

.pp-step.right .pp-card {
  grid-column: 2 / 3;border-right: 2px solid;
}

.pp-number {
  position: absolute;
  font-size: 125px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  top: 2.5rem;
}

.pp-step.left .pp-number {
  left: 0;
}

.pp-step.right .pp-number {
  right: -25px;
}

/* Cards */
.pp-card {
 /* background: var(--pp-card);*/
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
 /* box-shadow: 0 20px 40px rgba(0,0,0,0.35);*/
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.pp-card:hover {
	background: rgb(181 199 255 / 73%); box-shadow: 1px 1px 10px 1px #fff; cursor: pointer; 
}

.pp-card:hover h3 {
font-weight: 700; color: #000;
}
.pp-card:hover p {
	color: #444;
}
.pp-card:hover li {
	color: #000; font-weight: 600;
}

.pp-card h3 {
  /*color: var(--pp-accent);*/
	color: /*#ffc706*/rgb(181 199 255 / 73%);
  margin-bottom: 0.75rem; font-weight: 700;
	transition:0.64s;
}

.pp-card p {
  margin-bottom: 1rem;
  color: var(--pp-text);
}

.pp-card ul {
  padding-left: 1.1rem;
  color: var(--pp-muted);
}

.pp-card li {
  margin-bottom: 0.4rem;
}

/* CTA */
.pp-cta {
  text-align: center;
  margin-top: 5rem;
}

.pp-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.pp-btn {
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.pp-btn.primary {
  background: /*var(--pp-accent)*/rgb(67,110,239);
  color: #000;
}

.pp-btn.secondary {
  /*border: 2px solid var(--pp-accent);*/
  /*color: var(--pp-accent);*/
    border: 2px solid rgb(67,110,239);
    color: white;
}

.pp-reassurance {
  color: var(--pp-muted);
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 900px) {
  .pp-timeline::before {
    left: 0;
  }

  .pp-step {
    grid-template-columns: 1fr;
  }

  .pp-card {
    max-width: 100%;
  }

  .pp-number {
    font-size: 4.5rem;
  }
}

.emergency-home {
	    background: linear-gradient(90deg, #00000099 25%, #00000099 25%, #00000099 75%, #00000099 75%), url(/img/homepage/emergency-electric-02.jpg);
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat; text-align: center;
    background-position: center; padding: 150px 25px;
}

.emergency-home h2 {
	font-family: Montserrat; font-weight: 600; font-size: 20px; color: #ffc706; text-shadow: 1px 1px 1px #000;
}

.emergency-home h2 span {
	font-weight: 800; font-size: 35px; color: #fff; letter-spacing: 1px;
}

.emergency-home p {
	font-family: font2; font-size: 17px; line-height: 35px; font-weight: 600; color: #fff; margin-bottom: 50px;
}

.emergency-home mark {
	padding: 15px; border-radius: 10px; background: #ffc706; color: #000; font-weight: 600;
}

:root {
  --es-bg: #EBEEF4;
  --es-card: #151a22;
  --es-accent: #f5b301;
  --es-text: #e6e6e6;
  --es-muted: #9aa4b2;
}

.electrical-services {
     background-color: #fff !important;
    /*background: linear-gradient(90deg,rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 80%), url(/img/homepage/electric-pattern-01.png);*/
    /*background: linear-gradient(90deg,rgb(67 110 240 / 75%), rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgb(67 110 240 / 75%)), url(/img/homepage/electric-pattern-01.png);*/
    background: linear-gradient(90deg,rgb(67 110 240 / 75%), rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgb(67 110 240 / 75%)), url(/img/homepage/sparse-cloud-bg.JPG);
		background-position:50% 50%; 
    background-size: cover;
  color: var(--es-text);
  padding: 6rem 1.5rem;
}

.es-container {
  max-width: 1200px;
  margin: 0 auto;
}

.es-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.es-header h2 {
  font-size: 40px; font-family: Montserrat;
  margin-bottom: 1rem; color: #151a22; font-weight:800;
}


.es-header p {
  color: var(--es-muted);
  font-size: 1.1rem;
}

/* Grid */
.es-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

/* Cards */
.es-card {
  background: var(--es-card);
  border-radius: 18px;
  padding: 2rem; border: 2px solid #000;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.es-card:hover {
  transform: translateY(-6px); border: 2px solid rgb(67,110,239);
  box-shadow: 1px 1px 10px 1px #000; cursor: pointer;
}

.es-card h3 {
  color: /*var(--es-accent);*/ white; 
  margin-bottom: 0.6rem; font-size: 23px;
}

.es-card p {
  margin-bottom: 1rem;
}

.es-card ul {
  padding-left: 1.1rem;
  color: var(--es-muted);
}

.es-card li {
  margin-bottom: 0.4rem;
}

/* Tag */
.es-tag {
  position: absolute;
  bottom: 10px;
  right: 1.2rem;
  font-size: 0.75rem;
  color: #000;
  background: /*var(--es-accent);*/rgb(181 199 255 / 73%);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
	transition: 0.24s;
}
.es-tag:hover {
  background: /*rgb(181 199 255 / 73%)*/rgb(67,110,239);
}

/* CTA */
.es-cta {
  text-align: center;
  margin-top: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.es-cta h3 {
	font-weight: 600; color: rgb(181 199 255 / 93%); text-shadow: 1px 1px 1px #000;
}
.es-cta p {
  color: var(--es-muted);
}

.es-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.es-btn {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.es-btn.primary {
  /*background: var(--es-accent);*/
	background: rgb(67,110,239);
  color: white;;
}

.es-btn.secondary {
  /*border: 2px solid var(--es-accent);*/
  /*color: var(--es-accent);*/
    border: 2px solid rgb(67,110,239);
    color: rgb(67,110,239);
}

@media (max-width: 991px){
	.es-header h2 {
		font-size: 2rem; font-family: Montserrat;
		margin-bottom: 1rem; color: #151a22; font-weight:800;
	}
.es-header p {
  color: black;
  font-size: 1.1rem;
}

.es-cta p {
  color: black;
}


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

.about-hero {
  position: relative;
  padding: 180px 25px;
  background: linear-gradient(90deg, #00000099 25%, #00000099 25%, #00000099 75%, #00000099 75%),url(/img/homepage/electrician-001.jpg) center/cover no-repeat;
  color: #fff;
}
.about-hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 75%);
}
.about-hero h1 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 45px;
}
.about-legend {
  list-style:none;
  padding:0;
  margin-top:25px;
}
.about-legend li {
  display:contents;
  margin-right:15px;
}
.about-legend a {
  background: rgb(181 199 255 / 73%);
  padding:8px 14px;
  border-radius:6px;
  color:#000;
  font-weight:600;
  text-decoration:none;
}
.about-legend a:hover {
  /*background:#ffc706;*/
  background:white;
	color:black;
}
/* Split */
.about-split .about-content {
  padding:150px 75px;
}
.about-image-1 {
  background:url(/img/homepage/company-history-01.png) center/cover no-repeat;
  min-height:600px; border-radius: 25px;
}

.about-split h2 {
	font-family: Montserrat; font-weight: 800;
}
.about-split p {
	font-family: font2; font-weight: 600; font-size: 17px; line-height: 35px;
}
/* Services */
.about-services {
  padding:100px 25px;
    /*background: url(/img/homepage/electric-background-05.png) center / cover no-repeat;*/
    background: url(/img/homepage/sparse-cloud-bg.png) center / cover no-repeat;
    background-color: #e7e7e799;
    background: linear-gradient(90deg,rgb(67 110 240 / 75%), rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgb(67 110 240 / 75%)), url(/img/homepage/sparse-cloud-bg.JPG);
		background-position:50% 50%; 
}
.about-card {
  background:#151a22;
  color:#fff;
  padding:35px;
  border-radius:15px;
  border:2px solid #000;
  height:100%;
}
.about-card h3 {
  color: rgb(181 199 255 / 73%);
  font-weight:700;
}

.about-card p {
	font-family: font2; font-size: 15px; line-height: 30px; font-weight: 500;
}

/* Areas */
.about-areas {
	padding: 100px 0px;
	    /*background: linear-gradient(90deg, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 1) 85%, rgba(255, 255, 255, 0) 85%), url(/img/homepage/electric-pattern-01.png);*/
			/*background: linear-gradient(90deg,rgb(67 110 240 / 75%), rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgb(67 110 240 / 75%)), url(/img/homepage/electric-pattern-01.png); */
    background: linear-gradient(90deg,rgb(67 110 240 / 75%), rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgb(67 110 240 / 75%)), url(/img/homepage/sparse-cloud-bg-2.jpg);
		background-position: 50% 50%; 
    background-size: cover;
}

.about-services h2 {
	font-family: Montserrat; font-weight: 800;
}

.about-services p {
	font-family: font2; font-size: 17px; line-height: 35px; font-weight: 600;
}

.about-split {
	padding: 100px 0px;
}
.about-areas-content {
  padding:150px 75px;
}
.about-map {
  background:url(/img/homepage/az-service-area.jpg) center/cover no-repeat;
  min-height:600px; border-radius: 25px;
}

.about-areas h2 {
	font-weight: 800; font-family: Montserrat;
}

.about-areas p {
	font-family: font2; font-size: 17px; line-height: 35px; font-weight: 600;
}

.area-list li {
  font-weight:600;
  line-height:35px;
}



/* Why */
.about-why {
  position:relative;
  padding:120px 125px;
  background:url(/img/homepage/electric-background-05.png) center/cover no-repeat;
}
.about-why-overlay {
  position:absolute; inset:0;
 
}
.about-why h2 {
  color:rgb(67,110,239);
	
	
	
  text-align:center; font-weight: 800; font-family: Montserrat;
  margin-bottom:50px;
}
.why-cards {
  display:flex;
  gap:25px;
  overflow-x:auto;
}
.why-card {
  min-width:300px;
  background:#151a22;
  padding:30px;
  border-radius:15px;
  color:#fff;
}

.why-card h3 {
	font-family: Montserrat; font-weight: 600; font-size: 22px;
}

/* CTA */
.about-cta {
  position:relative;
  padding:150px 25px;
  background:linear-gradient(90deg, #00000099 25%, #00000099 25%, #00000099 75%, #00000099 75%), url(/img/homepage/emergency-electric-02.jpg) center/cover no-repeat;
}
.about-cta-overlay {
  position:absolute; inset:0;
  background:rgba(0,0,0,0.7);
}
.about-cta h2 { color: rgb(181 199 255 / 93%); font-weight: 800; }
.about-cta p { color:#fff; font-family: font2;}




@media (max-width:991px){
		.about-hero {
				position: relative;
				padding: 180px 25px;
				background: linear-gradient(90deg, #00000099 25%, #00000099 25%, #00000099 75%, #00000099 75%),url(/img/homepage/electrician-001.jpg) center/cover no-repeat;
				color: #fff;
				text-align:center;
		}
		.about-legend li {
				display: flex;
				margin-right: 15px;
				justify-content: space-around;
				margin: 10px;
		}
		.about-split .about-content {
				padding: 40px 15px;
				text-align: center;
		}
		.about-card {
				background: #151a22;
				color: #fff;
				padding: 35px 10px;
				border-radius: 15px;
				border: 2px solid #000;
				height: 100%;
				text-align: center;
		}
		.why-cards {
				display: flex;
				flex-direction: column;
				gap: 25px;
				overflow-x: auto;
		}
		.about-why {
			position:relative;
			padding:120px 15px;
			background:url(/img/homepage/electric-background-05.png) center/cover no-repeat;
		}
		.about-areas-content {
				padding: 150px 15px;
				text-align: center;
				
		}
		.about-areas-content ul{
				padding: 0;
				list-style-type: none;
		}
}


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

.services-hero {
  position: relative;
  background: linear-gradient(90deg, #00000099 25%, #00000099 25%, #00000099 75%, #00000099 75%), url(/img/homepage/electrical-services-001.jpg) center/cover no-repeat;
  padding: 180px 0;
}
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.85) 45%, rgba(255,255,255,0) 70%);
}
.services-legend a {
  display: inline-block;
  margin: 6px 10px 6px 0;
  padding: 8px 14px;
  background: rgb(181 199 255 / 73%);
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}
.services-hero .hero-ctas{
	display:flex;
	gap: 10px; 
}
.services-legend a:hover{
	  background: black;
		color:white;

}

.services-hero h1 {
	font-weight: 800; color: #fff; font-family: Montserrat;
}

.services-hero p {
	font-family: font2; font-weight: 600; line-height: 35px; color: #f9f9f9;
}
.why-choose {
  background: #fff;
  overflow: hidden;
}

.why-choose-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 600px;
}
@media (max-width: 991px){
	.why-choose-wrap {
		display: grid;
		grid-template-columns: .2fr 1fr;
		min-height: 600px;
	}
}
.why-choose-media {
  background: url(/img/homepage/electrical-panel-02.jpg) center/cover no-repeat;
}

.why-choose-content {
  padding: 140px 70px;
}

		@media (max-width: 991px){
				.services-hero {
						position: relative;
						padding:  80px 0;
						text-align: center;
				}
			.why-choose-content {
				padding: 140px 10px;
			}
		}

.why-choose-content h2 {
  font-family: Montserrat;
  font-weight: 700;
  margin-bottom: 25px;
}

.why-choose-content h2 span {
  font-weight: 800;
}

.why-choose-content p {
  font-family: font2;
  font-size: 17px;
  line-height: 34px;
  margin-bottom: 30px;
}

.why-choose-points {
  list-style: none;
  padding: 0;
}

.why-choose-points li {
  font-family: font2;
  font-weight: 600;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.why-choose-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffc706;
  font-weight: 800;
}


.service-block {
  background: #f9f9f9;
  padding: 120px 0;
}

.service-block-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;
  align-items: center;
}
		@media (max-width: 991px){
				.service-block-wrap {
				display: flex;
				grid-template-columns: 0fr 1fr;
				max-width: 1300px;
				margin: 0 auto;
				gap: 0;
				align-items: center;
				padding: 0 20px;
				}
		}
		
.residential-block .service-media {
  background: url(/img/homepage/home-exterior-lighting-01.jpg) center/cover no-repeat;
  height: 480px;
  border-radius: 16px;
}

.service-content h2 {
  font-family: Montserrat;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-content p {
  font-family: font2;
  font-size: 17px;
  line-height: 34px;
  margin-bottom: 25px;
}

.service-content ul {
  padding-left: 20px;
}

.service-content li {
  font-family: font2;
  font-weight: 600;
  margin-bottom: 10px;
}

.commercial-block {
  background: #fff;
}

.commercial-block .service-media {
  background: url(/img/homepage/new-electric-01.jpg) center/cover no-repeat;
  height: 480px;
  border-radius: 16px;
}

.service-block-wrap.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-block-wrap.reverse {
  direction: rtl;
}

.service-block-wrap.reverse > * {
  direction: ltr;
}

.primary-cta {
  background: linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.75)
    ),
    url(/img/homepage/emergency-electric-02.jpg) center/cover no-repeat;
  padding: 160px 25px;
  text-align: center;
}

.primary-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.primary-cta h2 {
  font-family: Montserrat;
  font-weight: 800;
  color: #ffc706;
  margin-bottom: 20px;
}

.primary-cta p {
  font-family: font2;
  font-size: 17px;
  line-height: 34px;
  color: #fff;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.cta-btn.primary {
  background: #ffc706;
  color: #000;
}

.cta-btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}


/* =========================
SERVICE HERO
========================= */
.service-hero {
  background: #fff;
}
.service-hero .hero-ctas{
	display:flex;
	gap: 10px; 
}
.service-hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 650px;
}

.service-hero-content {
  padding: 160px 80px;background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/ url(/img/homepage/electric-background-05.png);
    background-size: cover;
    background-color: #f9f9f9 !important;
}

.service-hero-content h1 {
  font-family: Montserrat;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-hero-content p {
  font-family: font2;
  font-size: 17px;
  line-height: 34px;
  margin-bottom: 35px;
}

.service-hero-media {
  position: relative;
  background: url(/img/homepage/home-exterior-lighting-01.jpg) center/cover no-repeat;
}

.service-legend {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: /*#ffce00*/rgb(67,110,239);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-legend a {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}


/* =========================
GENERAL SERVICES
========================= */
/* =========================
SERVICE CARDS – FLIP GRID
========================= */
.service-cards {
      background-color: #fff !important;
    background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/ url(/img/homepage/electric-pattern-01.png);
		
		
/*		background: linear-gradient(rgb(67 110 240 / 75%), rgb(67 110 240 / 85%)), url(/img/homepage/electric-pattern-01.png);*/
/*    background-size: 45%;*/
    background: linear-gradient(90deg,rgb(67 110 240 / 75%), rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgb(67 110 240 / 75%)), url(/img/homepage/sparse-cloud-bg-2.jpg);
		background-size: cover;
		background-positon:center center; 
  padding: 120px 25px;
}

.sc-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sc-header {
  text-align: center;
  margin-bottom: 70px;
}

.sc-header h2 {
  font-family: Montserrat;
  font-weight: 800;
}

.sc-header p {
  font-family: font2;
  color: #777;
}
.sc-header .white-text{
	color:white;
}
/* 3x3 Grid */
.sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card Shell */
.sc-card {
  perspective: 1200px;
}

.sc-inner {
  position: relative;
  width: 100%;
  height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

/* Flip on hover & focus */
.sc-card:hover .sc-inner,
.sc-card:focus-within .sc-inner {
  transform: rotateY(180deg);
}

/* Shared faces */
.sc-front,
.sc-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 18px;
  border: 2px solid #000;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Front */
.sc-front {
  background: #151a22;
  color: #fff;
}

.sc-front i {
  font-size: 48px;
  color: rgb(181 199 255 / 73%);
  margin-bottom: 20px;
}

.sc-front h3 {
  font-family: Montserrat;
  font-weight: 700;
}

/* Back */
.sc-back {
  background: #fff;
  color: #000;
  transform: rotateY(180deg);
  text-align: center;
}

.sc-back h4 {
  font-family: Montserrat;
  font-weight: 800;
  margin-bottom: 15px;
}

.sc-back p {
  font-family: font2;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 20px;
}

.sc-back ul {
  list-style: none;
  padding: 0;
}

.sc-back li {
  font-family: font2;
  font-weight: 600;
  margin-bottom: 8px;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .sc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .sc-grid {
    grid-template-columns: 1fr;
  }

  .sc-inner {
    height: 410px;
  }
}


/* =========================
SERVICE DETAILS
========================= */
.service-detail {
  padding: 120px 25px;
  background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/ url(/img/homepage/electric-background-05.png);
    background-size: cover;
    background-color: #f9f9f9 !important;
}

.service-detail-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-detail-media {
  height: 450px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.service-detail-content h2 {
  font-family: Montserrat;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-detail-content p {
  font-family: font2;
  line-height: 34px;
  margin-bottom: 25px;
}

.service-detail-content ul li {
  font-family: font2;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Alternating Layout */
.service-detail.alt .service-detail-wrap {
  direction: rtl;
}

.service-detail.alt .service-detail-wrap > * {
  direction: ltr;
}


/* =========================
IMAGE ASSIGNMENTS
========================= */
.service-detail.remodels .service-detail-media {
  background-image: url(/img/homepage/electrical-remodel-01.jpg);box-shadow: -15px -15px 0px 0px rgb(181 199 255 / 73%);
    border: 2px solid #000;
}

.service-detail.panels .service-detail-media {
  background-image: url(/img/homepage/electrical-panel-02.jpg);box-shadow: 15px -15px 0px 0px rgb(181 199 255 / 73%);
    border: 2px solid #000;
}

.service-detail.lighting .service-detail-media {
  background-image: url(/img/homepage/home-exterior-lighting-01.jpg);box-shadow: -15px -15px 0px 0px rgb(181 199 255 / 73%);
    border: 2px solid #000;
}

.service-detail.generators .service-detail-media {
  background-image: url(/img/homepage/home-generator-01.jpg);box-shadow: 15px -15px 0px 0px rgb(181 199 255 / 73%);
    border: 2px solid #000;
}


/* =========================
FINAL CTA
========================= */
.primary-cta {
  background: linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url(/img/homepage/emergency-electric-02.jpg) center/cover no-repeat;
  padding: 160px 25px;
  text-align: center;
}

.primary-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.primary-cta h2 {
  font-family: Montserrat;
  font-weight: 800;
  color: rgb(181 199 255 / 93%);
  margin-bottom: 20px;
}

.primary-cta p {
  font-family: font2;
  font-size: 17px;
  line-height: 34px;
  color: #fff;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.cta-btn.primary {
  background: /*#ffc706*/rgb(67,110,239);;
  color: white;
}
.cta-btn.primary:hover {
  background: rgb(181 199 255 / 73%);

}
.cta-btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}


/* =========================
MOBILE
========================= */
@media (max-width: 900px) {

  .service-hero-wrap,
  .service-detail-wrap {
    grid-template-columns: 1fr;
  }

  .service-hero-content {
    padding: 80px 25px;
  }

  .service-legend {
    position: static;
    margin: 25px;
		justify-content: center;
  }

  .service-detail-media {
    height: 280px;
  }

  .service-detail.alt .service-detail-wrap {
    direction: ltr;
  }
}


/* =========================
COMMERCIAL IMAGE ASSIGNMENTS
========================= */
.commercial-hero .service-hero-media {
  background-image: url(/img/homepage/new-electric-01.jpg);
}

.service-detail.construction .service-detail-media {
  background-image: url(/img/homepage/new-electric-01.jpg);box-shadow: -15px -15px 0px 0px rgb(181 199 255 / 73%);
    border: 2px solid #000;
}

.service-detail.upgrades .service-detail-media {
  background-image: url(/img/homepage/electrical-upgrade-01.jpg);box-shadow: 15px -15px 0px 0px rgb(181 199 255 / 73%);
    border: 2px solid #000;
}

.service-detail.parking-lighting .service-detail-media {
  background-image: url(/img/homepage/parking-lot-lighting-01.jpg); box-shadow: -15px -15px 0px 0px rgb(181 199 255 / 73%);
    border: 2px solid #000;
}

.service-detail.generators .service-detail-media {
  background-image: url(/img/homepage/home-generator-01.jpg);    box-shadow: 15px -15px 0px 0px  rgb(181 199 255 / 73%);
    border: 2px solid #000;
}



/*FAQS*/

/* =========================
FAQ HERO
========================= */
.faq-hero {
  background: #151a22;
  color: #fff;
  padding: 140px 25px;
  text-align: center;
}

.faq-hero h1 {
  font-family: Montserrat;
  font-weight: 800;
  margin-bottom: 20px;
}

.faq-hero p {
  font-family: font2;
  font-size: 17px;
  line-height: 34px;
  max-width: 800px;
  margin: 0 auto;
}


/* =========================
FAQ SECTIONS
========================= */
.faq-section {
  padding: 120px 25px;
  background: #f9f9f9;
}

.faq-section:nth-of-type(even) {
  background: #fff;
}

.faq-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.faq-section-header h2 {
  font-family: Montserrat;
  font-weight: 800; font-size: 25px;
}

.faq-section-header p {
  font-family: font2;
  color: #777;
}


/* =========================
ACCORDION
========================= */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 25px 10px;
	transition: 0.3s; 
}
.faq-item:hover {

/*background: rgb(102 139 255 / 79%);*/
}
.faq-question {
  font-family: Montserrat;
  font-weight: 700;
  cursor: pointer;
  position: relative; font-size: 20px;
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
}

.faq-item.open .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  margin-top: 20px;
}

.faq-answer p {
  font-family: font2;
  line-height: 32px;
  margin-bottom: 15px;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-answer li {
  font-family: font2;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-answer a {
  color: #f5b301;
  font-weight: 600;
  text-decoration: none;
}


/**** 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 ****/
/* =========================
CONTACT HERO
========================= */
.contact-hero {
  background: linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.65)
    ),
    url(/img/homepage/electrician-001.jpg) center/cover no-repeat;
  padding: 140px 25px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-family: Montserrat;
  font-weight: 800;
  color:rgb(181 199 255 / 93%);
  margin-bottom: 20px;
}

.contact-hero p {
  font-family: font2;
  font-size: 18px;
  line-height: 36px;
  color: #fff;
}


/* =========================
SERVICES OVERVIEW
========================= */
.contact-services {
  background: #fff;
  padding: 120px 25px;
}

.cs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-header {
  text-align: center;
  margin-bottom: 70px;
}

.cs-header h2 {
  font-family: Montserrat;
  font-weight: 800;
}

.cs-header p {
  font-family: font2;
  color: #777;
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.cs-item {
  background: #151a22;
  border-radius: 18px;
  padding: 45px 30px;
  text-align: center;
  border: 2px solid #000;
  transition: transform .3s ease;
}

.cs-item:hover {
  transform: translateY(-6px);
  border-color: #ffc706;
}

.cs-item i {
  font-size: 42px;
  color: rgb(67,110,239);;
  margin-bottom: 20px;
}

.cs-item h3 {
  font-family: Montserrat;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.cs-item p {
  font-family: font2;
  color: #ddd;
  line-height: 30px;
}


/* =========================
CONTACT FORM SECTION
========================= */
.contact-form-section {
  background: #f9f9f9;
  padding: 140px 25px;
}

.contact-form-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-header {
  text-align: center;
 margin-bottom: -4px;
    padding: 25px;
    border-radius: 25px;
    background:rgb(181 199 255 / 73%);
}

.contact-form-header h2 {
  font-family: Montserrat;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-form-header p {
  font-family: font2;
  color: #000;
}

/*
IMPORTANT:
Your existing form styles are preserved.
This wrapper simply centers and spaces it.
*/
.contact-form-holder {
  background: transparent;
}


/* =========================
MOBILE
========================= */
@media (max-width: 1000px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 100px 20px;
  }

  .contact-form-section {
    padding: 100px 20px;
  }
}


/**** Testimonials Section ****/
.testimonials {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}


/**** Sections On Every Page ****/
.contact-section {
	position: relative; z-index: 1; margin: -50px 0px -50px 0px;    background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/ url(/img/homepage/electric-background-05.png);
    background-size: cover;
    background-color: #f9f9f9 !important;
}
.contact-section h3 {
	font-size: 2rem; font-family: Montserrat; font-weight: 800; text-align: center; color: rgb(12,12,12); padding: 15px; border-radius: 10px;
	background: rgb(181 199 255 / 73%); margin-bottom: 0px;
}

/* =========================
SERVICE AREA
========================= */
.service-area {
  position: relative;
  background: url(/img/homepage/az-service-area.jpg) center/cover no-repeat;
  padding: 160px 25px;
  text-align: center;
  overflow: hidden;
}

.service-area-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

.service-area-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.service-area h2 {
  font-family: Montserrat;
  font-weight: 800;
  color: rgb(67,110,239);;
  margin-bottom: 20px;
}

.service-area p {
  font-family: font2;
  font-size: 18px;
  line-height: 36px;
  color: #fff;
  margin-bottom: 45px;
}

/* Service Area List */
.service-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
}

.service-area-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: font2;
  font-weight: 600;
}

/* CTA */
.service-area-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reuse existing CTA button styles */


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

/**** 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: 50px 0;
}
.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 .h-card {
	text-align: center;
}

.footer-section .h-card img {
	margin-left: 25px; margin-right: -25px;
}
.footer-section .vms-link-wrapper a {
	width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.footer-section {
	padding: 100px 0 10px;     background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/ url(/img/homepage/electric-background-05.png);
    background-size: cover;
    background-color: #f9f9f9 !important; font-size: 18px; font-weight: 400;
}
.footer-section h3 {
	font-size: 1.3rem; color: rgb(30,30,30); font-weight: bold;
}
.footer-section p {
	font-size: 15px; font-family: 'font2';
}
.footer-section a {
	 font-size: 16px; 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-family: font2; font-size: 17px; line-height: 35px; font-weight: 600;
}
.service-cities h4 {
	font-size: 20px; font-family: Montserrat; font-weight: 600;
}
.service-cities h3 {
	font-size: 30px;  font-family: Montserrat; font-weight: 800; margin-bottom: 50px;
}

.bottom-footer {
	padding: 25px 0px 25px 0px; background: /*#ffc706*/rgb(67,110,239);
}

.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;
}
.trademark-disclaimer p {
	font-size: 8px; text-align: center;
}





/* === Sm. Laptop CSS Section ================= */
@media screen and (max-width: 1190px) {
.showcase-overlay {
    position: absolute;
    top: 10.5px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(255 245 245 / 65%) 55%, rgba(255, 255, 255, 0) 65%);
}
.slide-content {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    width: 50%;
    color: #000;
}

.slide-thumbs {
    margin-top: 125px;
    display: grid;
    padding: 50px;
    grid-template-columns: 1fr 1fr;
    /* background: #ffc706; */
    background: rgb(181 199 255 / 73%);
    border-radius: 5px;
    border: 2px solid #fff;
    /* background-image: radial-gradient(49% 81% at 45% 47%, #FFE20345 0%, #073AFF00 100%),conic-gradient(from 0deg at 17% -2%, #FFF500FF 1%, #FF000000 99%),radial-gradient(142% 91% at 83% 7%, #FFDB00FF 1%, #FF000000 99%),radial-gradient(142% 91% at -6% 74%, #FF0049FF 1%, #FF000000 99%),radial-gradient(142% 91% at 111% 84%, #FF7000FF 0%, #FF0000FF 100%); */
    gap: 18px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
}

.coverage-cards {
    padding: 200px 10px;
}

}
 
/* === Sm. Laptop CSS Section ================= */
@media screen and (max-width: 1024px) {
	
}
 
/* === Mobile CSS Section ===================== */
@media screen and (max-width: 991px) {
.mobile-top-header img{
	max-width: 200px; 
}
.mcbryde-menu {
    position: absolute;
    bottom: 92px;
    right: 0;
    width: 325px;
    padding: 18px;
    background: #111;
    border: 3px solid rgb(181 199 255 / 73%);
    border-radius: 16px;
    color: #fff;
    opacity: 0;
    transform: scale(.6) translateY(10px);
    transform-origin: bottom right;
    transition: all 0.26s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 18px 35px rgba(0,0,0,0.55);
    visibility: hidden;
}
.mcbryde-menu.active {
    transform: scale(1) translateY(0);
    opacity: 1;
		    visibility: visible;

}
.showcase-overlay {
    position: absolute;
    top: 10.5px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(255 245 245 / 75%) 45%, rgba(255, 255, 255, 0) 100%);
}
.slide-content {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    color: #000;
		padding: 0 20px; 
}

.slide-thumbs {
    margin-top: 125px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    /* background: #ffc706; */
    background: rgb(181 199 255 / 73%);
    border-radius: 5px;
    border: 2px solid #fff;
    /* background-image: radial-gradient(49% 81% at 45% 47%, #FFE20345 0%, #073AFF00 100%),conic-gradient(from 0deg at 17% -2%, #FFF500FF 1%, #FF000000 99%),radial-gradient(142% 91% at 83% 7%, #FFDB00FF 1%, #FF000000 99%),radial-gradient(142% 91% at -6% 74%, #FF0049FF 1%, #FF000000 99%),radial-gradient(142% 91% at 111% 84%, #FF7000FF 0%, #FF0000FF 100%); */
    gap: 18px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
    display: none;
}

/**** 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: 111px; height: 100%; width: 200px; 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: Montserrat;
    font-weight: 800;
		color:black;
	
}
.nav-link{
    font-family: Montserrat;
    font-weight: 800;
		color:black;

}
.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;
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.video .pad {
	padding: 350px 0px 0px 300px; position: absolute;
}
.video .pad h5 {
	font-weight: 500; color: rgb(255,255,255); font-size: 50px; text-shadow: 0px 0px 5px #000; font-family: 'Arial'; text-align: left;
}
.video .pad p {
	margin-top: 0% !important; color: rgb(255,255,255); text-shadow: 0px 0px 5px #000; font-size: 25px; font-family: 'Arial'; text-align: left;
}
.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;
}
 

.home1 {
     background-color: #fff !important;
    background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/url(/img/homepage/electric-pattern-01.png);
		
		
		/*background: linear-gradient(rgb(67 110 240 / 75%), rgb(67 110 240 / 85%)), url(/img/homepage/electric-pattern-01.png);*/
		
		background: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, rgb(255 255 255 / 0%) 25%, rgb(255 255 255 / 0%) 75%, rgba(255, 255, 255, 0) 75%), url(/img/homepage/sparse-cloud-bg.JPG);
    background-position: 50% 50%;
		
    background-size: cover;
}

.home1 .container {
	padding: 50px 10px; background: /*linear-gradient(90deg,rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 75%),*/ url(/img/homepage/electric-background-05.png); border: 2px solid #000; border-bottom: none;
    background-size: cover; background-color: #f9f9f9 !important; border-top-right-radius: 25px; border-top-left-radius: 25px;
}

.home1 .pad {
	padding-top: 125px; text-align: center; padding-bottom: 50px;
}
.home1 h1 {
	font-family:  Montserrat; font-size: 25px;  font-weight: 800; color: /*#ffc706*/rgb(67,110,239); line-height: 35px;
}

.home1 h1 u {
	color: #db4d20;
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600;  color: rgb(150,150,150);line-height: 30px;
}
.home1 h1 span {
	font-size: 1rem;; color: #000;
}

.home1 .intro-image img {
	max-width: 35%;  position: relative;
}


/* SECTION */
.coverage-cards {
  padding: 200px 10px;
  background: url(/img/homepage/electric-background-05.png);
  background-size: cover;
  background-color: #f9f9f9 !important;
}

/* MAKE ALL TOP-LEVEL COLUMNS EQUAL HEIGHT */
.coverage-cards > .container-fluid > .row {
  display: flex;
}

.coverage-cards > .container-fluid > .row > [class*="col-"] {
  display: flex;
}

/* CARD */
.coverage-cards .cov-card {
  background: #fff;
  border-radius: 15px;
  border: 3px solid #000;
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
	transition: 0.3s;
}

.coverage-cards .cov-card:hover {
  /*background: #ffc706;*/
	background: rgb(125 157 255 / 57%);
  box-shadow: 1px 1px 10px 1px #000;
}

/* INNER ROW (IMAGE + CONTENT) */
.coverage-cards .cov-card .row {
  display: flex;
  flex: 1 1 0;
  align-items: stretch;
}

/* IMAGE + CONTENT COLUMNS */
.coverage-cards .cov-card .row > [class*="col-"] {
  display: flex;
}

/* IMAGE BLOCKS */
.coverage-cards .cov-card .cov-image1,
.coverage-cards .cov-card .cov-image2,
.coverage-cards .cov-card .cov-image3 {
  flex: 1 1 0;
  border-right: 3px solid #000;
  background-size: cover;
  background-repeat: no-repeat;
}

/* IMAGE SOURCES */
.cov-image1 {
  background-image: url(/img/homepage/emergency-electric-01.png);
}

.cov-image2 {
  background-image: url(/img/homepage/troubleshooting-01.jpg);
}

.cov-image3 {
  background-image: url(/img/homepage/inspection-01.png);
}

/* CONTENT */
.coverage-cards .cov-content {
  padding: 75px 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverage-cards h3 {
  font-family: Montserrat;
  font-weight: 600;
}

.coverage-cards p {
  font-family: font2;
  font-size: 16px;
  line-height: 30px;
}


.home-choose {
	position: relative;
}

.home-choose .container-fluid {
	padding: 0px;
}

.home-choose h2 {
	font-family: Montserrat; font-weight: 600;
}

.home-choose h2 span {
	font-weight: 800;
}

.home-choose p {
	font-family: font2; font-size: 17px; line-height: 35px; font-weight: 600;
}

.home-choose .choose-content {
	padding: 200px 15px;
	text-align: center;
}

.home-choose .choose-image {
	 background: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, rgb(255 255 255 / 0%) 25%, rgb(255 255 255 / 0%) 75%, rgba(255, 255, 255, 0) 75%), url(/img/homepage/electrician-001.jpg);
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0 solid #000;
    box-shadow: none;
}


/**** Services Section ****/
.pp-step.left .pp-card {
    grid-column: 1 / 2;
    margin-left: 50px;
    border-left: 2px solid #fff;
}
.pp-step.right .pp-card {
    grid-column: 2 / 3;
    border-right: 2px solid;
		    margin-right: 50px;

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

/**** Testimonials Section ****/
.testimonials {
	padding: 30px 0 30px 0; background: rgb(255,255,255);
}

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

/**** Footer Section ****/
.footer-section {
	padding-top: 30px; text-align: center;
}
.bottom-footer div[class*='col-']:nth-child(3) {
    display: flex;
    justify-content: center;
    font-size: 14px;
}
/*
.footer-section img {
	max-width: 210px; padding-bottom: 25px;
}
.service-cities h4 {
	font-size: 24px; font-weight: 600; color: rgb(255,255,255);
}
.service-cities a {
	font-size: 18px; line-height: 10px; color: rgb(255,255,255);
}

*/
/**** Misc. Section ****/
 
.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) {

}