/* ========================================== */
/* === 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/Plata.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'font3';
	src:url('../fonts/Unageo-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'font4';
	src:url('../fonts/recoleta.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');
}
.vertically-centered{
	display: flex;
	flex-direction: column;
	justify-content: center; 
}

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



/* grid: side-by-side cards, responsive */


.brs-reviews {
	padding: 100px 0px 100px 0px;
	    background: linear-gradient(to right, #ffffffd6, #ffffffd6), url(/img/homepage/black-grid-75.png);
    background-size: 15%;
    background-color: #ffffffba;
    text-align: center;
    background-repeat: repeat;
}
.brs-reviews h2 {
	font-size: 35px;
    font-family: font2;
    text-align: center;
    margin-bottom: 50px;
}
.brs-rev-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;                    /* mobile */
}
@media (min-width: 600px) {
  .brs-rev-grid { grid-template-columns: repeat(2, 1fr); }  /* small/tablet */
}
@media (min-width: 992px) {
  .brs-rev-grid { grid-template-columns: repeat(3, 1fr); }  /* desktop */
}

/* cards */
.brs-rev-card {
  border: 2px solid #0d5993;
  border-radius: .5rem;
  background: #fff;
  padding: 50px 15px;
  display: flex;               /* equal-height columns */
  flex-direction: column;
}
.brs-rev-top {
  display:flex; justify-content:space-between; gap:.75rem; align-items:baseline;
}
.brs-rev-author { font-weight:600; font-size: 20px;}
.brs-rev-stars { letter-spacing:.05em; color: gold; font-size: 20px; }
.brs-rev-text { margin: .5rem 0; text-align: left; }
.brs-rev-actions {
  display:flex; justify-content:space-between; align-items:center; margin-top:auto; /* push to bottom */
}
.brs-rev-toggle { border:0; background:transparent; font-size:1.1rem; cursor:pointer; line-height:1; }

.brs-rev-hidden { display:none; }
.brs-rev-link {
	color: #dd0301; font-weight: 600;
}
.brs-rev-cta { margin-top:3rem; text-align:center; }
.brs-rev-more, .brs-rev-btn {
  padding:.6rem 1rem; border:1px solid #333; background:#0d5993; color:#fff;
  border-radius:.4rem; cursor:pointer; text-decoration:none; display:inline-block;
}
.brs-rev-btn:hover, .brs-rev-more:hover { opacity:.9; background: #dd0301; }


.pest-expandable-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 225px;
  background-color: #000;
  color: #fff;
  border-radius: 30px;
  overflow: hidden;
  z-index: 999; border: 1px solid #fff;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pest-expandable-button.opened {
  width: 400px;
  border-radius: 20px;
}

.ppb-main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
}

.pest-expandable-button img {
  width: 50px;
  height: 25px;
border-radius: 0px;
  object-fit: cover;
}

.pest-expandable-button span {
  font-family: font3;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.ppb-content {
  max-height: 0;
  opacity: 0;
  padding: 0 16px;
  transition: all 0.4s ease;
  pointer-events: none;
}

.pest-expandable-button.opened .ppb-content {
  max-height: 1000px;
  opacity: 1;
  padding: 10px 16px 16px;
  pointer-events: auto;
}

.ppb-close {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  text-align: right;
  cursor: pointer;
  margin-bottom: 10px;
}
.ppb-close:hover {
  color: #c1292e;
}

/* Default avatar */
.ppb-img {
  object-fit: cover;
  transition: all 0.3s ease;
}

.ppb-label {
  font-family: font4;
  font-size: 15px;
  font-weight: 500; color: #fff;
  margin-top: 5px;
  white-space: nowrap;
  transition: font-size 0.3s ease;
}

/* When panel is opened */
.pest-expandable-button.opened .ppb-img {
  /*content: url('/img/logo-avatar.png');*/
  content: url('/img/berkshire-logo-new.jpg');
  width: 100px;
  height: 50px;
  border-radius: 0;
}

.pest-expandable-button.opened .ppb-label {
  font-size: 20px;
  font-weight: 700;
  margin-top: 25px;
  white-space: normal;
}

.pest-expandable-button.opened .ppb-close {
	    margin-top: -75px;
    margin-bottom: 125px;
}

.sticky-nav-float {
  position: fixed;
  top:184px; /* Adjust if needed */
  left: 0px; /* or right: 20px */
  background: linear-gradient(180deg, rgb(0, 0, 0) 6.5%, #0d5993 6.5%);
  padding: 75px 0;
  z-index: 9999; border-right: 3px solid #000; 
  width: 175px;
		height: 100%;
		    box-shadow: 0px -10px 0px 0px #000000;
  font-family: sans-serif;
}

.nav-main {
  list-style: none;
  margin: 0; line-height: 50px;
  padding: 0;
}

.nav-main li {
  position: relative; list-style: none !important; font-family: font2; font-size: 13px; letter-spacing: 1px;
}

.nav-main > li > a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #fff; letter-spacing: 2px;

}

.nav-main > li > a:hover {
  background-color: #000;
}

/* Popover menu styles */
.has-popover .popover {
  display: none;
  position: absolute;
  /*top: 0;*/

    top: -225%;
  left: 100%;
  background: #fff;
  padding: 10px 0;
 line-height: 30px; border-radius: 0px;
  min-width: 200px;
  white-space: nowrap;
}

.has-popover:hover .popover {
  display: block;
}

.popover li {
  margin: 0;
}

.popover a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #333;
  font-weight: normal;
}

.popover a:hover {
  background-color: #0d5993; color: #fff;
}

.sidebar-animate {
    background: linear-gradient(180deg, rgb(0, 0, 0) 6.5%, #0d5993 6.5%);
    width: 100px; transition: .3s;
    top: 105px;border-right: 1px solid #000;    height: 100%;
}

.sidebar-animate .nav-main li a {
	 font-size: 10px; margin-left: -10px;
}


.eqtype-modal-overlay-xy1 {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,32,64,0.66);
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.eqtype-modal-overlay-xy1.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.eqtype-modal-content-xy1 {
  background: #fff;
  border-radius: 16px;
  max-width: 775px;
  width: 92vw;
  margin: 80px auto 0 auto;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 32px rgba(40,49,111,0.14);
  position: relative;
  animation: eqtype-modal-fadein-xy1 0.3s;
}
@keyframes eqtype-modal-fadein-xy1 {
  0% { transform: translateY(-30px); opacity:0;}
  100% { transform: translateY(0); opacity:1;}
}
.eqtype-modal-close-xy1 {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2rem;
  color: #28316f;
  cursor: pointer;
  font-weight: bold;
  z-index: 4;
}
.eqtype-modal-btn-xy1 {
  background: #e2eefc;
  color: #28316f;
  font-size: 16px;
  border: none;
  border-radius: 8px;
     padding: 25px 15px;
    margin: 25px 0 0 0;
  cursor: pointer;
  transition: background 0.15s;
}
.eqtype-modal-btn-xy1:hover,
.eqtype-modal-btn-xy1:focus {
  background: #d3e5fa;
  color: #174987;
}
.eqtype-modal-btn-xy1 h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}


.eqtype-tabs-xy1 {
  width: 100%;
  margin: 20px 0 0 0;
}
.eqtype-tabs-xy1 i {
	font-size: 35px; margin: 15px 0px 15px 0px; color: red;
}
.eqtype-tab-row-xy1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.eqtype-tab-xy1 {
  background: #f6f8fa;
  border: 2px solid #dbe6f4;
  border-radius: 10px 10px 0 0;
  padding: 12px 10px 2px 10px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  text-align: center;
  flex: 1 1 110px;
  min-width: 120px;
  max-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eqtype-tab-xy1.active,
.eqtype-tab-xy1:focus {
  border-bottom: 2px solid #fff;
  border-color: #28316f #28316f #fff #28316f;
  background: #fff;
  box-shadow: 0 8px 24px rgba(40,49,111,0.05);
}
.eqtype-tab-xy1 img {
  width: 60px; height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 8px;
}
.eqtype-tab-xy1 span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #28316f;
}
.eqtype-tab-content-xy1 {
  background: #fff;
  border-radius: 0 0 14px 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(40,49,111,0.06);
  border-top: none;
  margin-top: -2px;
  min-height: 90px;
}
.eqtype-tab-content-xy1 h4 {
  margin: 0 0 10px 0;
  font-size: 19px;
  color: #174987;
}
.eqtype-tab-content-xy1 ul {
  margin: 0 0 0 20px;
  padding: 0;
  color: #444;
  font-size: 15px;
}
.eqtype-tab-content-xy1 li {
  margin-bottom: 5px;
}


.age-modal-overlay-x2 {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,32,64,0.66);
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.age-modal-overlay-x2 img {
	border-radius: 15px;
}

.age-modal-overlay-x2.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.age-modal-content-x2 {
  background: #fff;
  border-radius: 16px;
  max-width: 775px;
  width: 92vw;
  margin: 80px auto 0 auto;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 32px rgba(40,49,111,0.14);
  position: relative;
  animation: age-modal-fadein-x2 0.3s;
}
@keyframes age-modal-fadein-x2 {
  0% { transform: translateY(-30px); opacity:0;}
  100% { transform: translateY(0); opacity:1;}
}
.age-modal-close-x2 {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2rem;
  color: #28316f;
  cursor: pointer;
  font-weight: bold;
  z-index: 4;
}
.age-modal-btn-x2 {
  background: #e2eefc;
  color: #28316f;
  font-size: 16px;
  border: none;
  border-radius: 8px;
     padding: 25px 15px;
    margin: 50px 0 0 0;
  cursor: pointer;
  transition: background 0.15s;
}
.age-modal-btn-x2:hover,
.age-modal-btn-x2:focus {
  background: #d3e5fa;
  color: #174987;
}
.age-modal-btn-x2 h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}


.cost-modal-overlay-y3 {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,32,64,0.66);
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.cost-modal-overlay-y3 img {
	border-radius: 15px;
}

.cost-modal-overlay-y3.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.cost-modal-content-y3 {
  background: #fff;
  border-radius: 16px;
  max-width: 775px;
  width: 92vw;
  margin: 80px auto 0 auto;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 32px rgba(40,49,111,0.14);
  position: relative;
  animation: cost-modal-fadein-y3 0.3s;
}
@keyframes cost-modal-fadein-y3 {
  0% { transform: translateY(-30px); opacity:0;}
  100% { transform: translateY(0); opacity:1;}
}
.cost-modal-close-y3 {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2rem;
  color: #28316f;
  cursor: pointer;
  font-weight: bold;
  z-index: 4;
}
.cost-modal-btn-y3 {
  background: #e2eefc;
  color: #28316f;
  font-size: 16px;
  border: none;
  border-radius: 8px;
     padding: 25px 15px;
    margin: 50px 0 0 0;
  cursor: pointer;
  transition: background 0.15s;
}
.cost-modal-btn-y3:hover,
.cost-modal-btn-y3:focus {
  background: #d3e5fa;
  color: #174987;
}
.cost-modal-btn-y3 h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}


.seer-modal-overlay-s4 {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,32,64,0.66);
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.seer-modal-overlay-s4 img {
	border-radius: 15px;
}

.seer-modal-overlay-s4.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.seer-modal-content-s4 {
  background: #fff;
  border-radius: 16px;
  max-width: 775px;
  width: 92vw;
  margin: 80px auto 0 auto;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 32px rgba(40,49,111,0.14);
  position: relative;
  animation: seer-modal-fadein-s4 0.3s;
}
@keyframes seer-modal-fadein-s4 {
  0% { transform: translateY(-30px); opacity:0;}
  100% { transform: translateY(0); opacity:1;}
}
.seer-modal-close-s4 {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2rem;
  color: #28316f;
  cursor: pointer;
  font-weight: bold;
  z-index: 4;
}
.seer-modal-btn-s4 {
  background: #e2eefc;
  color: #28316f;
  font-size: 16px;
  border: none;
  border-radius: 8px;
      padding: 25px 15px;
    margin: 50px 0 0 0;
  cursor: pointer;
  transition: background 0.15s;
}
.seer-modal-btn-s4:hover,
.seer-modal-btn-s4:focus {
  background: #d3e5fa;
  color: #174987;
}
.seer-modal-btn-s4 h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}


.afue-modal-overlay-a5 {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,32,64,0.66);
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.afue-modal-overlay-a5 img {
	border-radius: 15px;
}

.afue-modal-overlay-a5.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.afue-modal-content-a5 {
  background: #fff;
  border-radius: 16px;
  max-width: 775px;
  width: 92vw;
  margin: 80px auto 0 auto;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 32px rgba(40,49,111,0.14);
  position: relative;
  animation: afue-modal-fadein-a5 0.3s;
}
@keyframes afue-modal-fadein-a5 {
  0% { transform: translateY(-30px); opacity:0;}
  100% { transform: translateY(0); opacity:1;}
}
.afue-modal-close-a5 {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2rem;
  color: #28316f;
  cursor: pointer;
  font-weight: bold;
  z-index: 4;
}
.afue-modal-btn-a5 {
  background: #e2eefc;
  color: #28316f;
  font-size: 16px;
  border: none;
  border-radius: 8px;
     padding: 25px 15px;
    margin: 50px 0 0 0;
  cursor: pointer;
  transition: background 0.15s;
}
.afue-modal-btn-a5:hover,
.afue-modal-btn-a5:focus {
  background: #d3e5fa;
  color: #174987;
}
.afue-modal-btn-a5 h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}


.stay-modal-overlay-h6 {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,32,64,0.66);
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.stay-modal-overlay-h6 img {
	border-radius: 15px;
}

.stay-modal-overlay-h6.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.stay-modal-content-h6 {
  background: #fff;
  border-radius: 16px;
  max-width: 775px;
  width: 92vw;
  margin: 80px auto 0 auto;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 32px rgba(40,49,111,0.14);
  position: relative;
  animation: stay-modal-fadein-h6 0.3s;
}
@keyframes stay-modal-fadein-h6 {
  0% { transform: translateY(-30px); opacity:0;}
  100% { transform: translateY(0); opacity:1;}
}
.stay-modal-close-h6 {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2rem;
  color: #28316f;
  cursor: pointer;
  font-weight: bold;
  z-index: 4;
}
.stay-modal-btn-h6 {
  background: #e2eefc;
  color: #28316f;
  font-size: 16px;
  border: none;
  border-radius: 8px;
      padding: 25px 15px;
    margin: 50px 0 0 0;
  cursor: pointer;
  transition: background 0.15s;
}
.stay-modal-btn-h6:hover,
.stay-modal-btn-h6:focus {
  background: #d3e5fa;
  color: #174987;
}
.stay-modal-btn-h6 h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}



.top-header {
	position: fixed; width: 100%; padding:  0;     background: linear-gradient(90deg, rgb(0, 0, 0) 15.5%, #dd0301 15.5%);	z-index: 3; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease; border-bottom: 3px solid #000;  
}
.top-header-animate {
	           background: linear-gradient(90deg, rgb(0, 0, 0) 8%, #dd0301 6.5%); border-bottom: 1px solid #000; margin-top: -15px;
}

.top-header-animate  .quote-cta {
	margin-top: 15px !important;
}

.top-header-animate div[class*='col-']:first-child img {
	    z-index: 1000;
    position: relative; transition: .3s;
    margin-left: -275px; padding-left: 15px;
    margin-right: 275px;
       border-bottom-right-radius: 25px !important;
    max-width: 63.5%;
    left: -25px;    margin-top: 5px !important;
}

.top-header div[class*='col-']:first-child {
	display: flex; justify-content: flex-end; align-items: center;
}
.top-header div[class*='col-']:first-child img {
    z-index: 1000;
    position: relative;
    margin-left: -35px;
    margin-top: -30px;
    margin-right: 110px;
    padding: 50px;
}

.top-header-animate .header-citations {
	margin-top: 10px !important;
}

.top-header .header-citations {
	margin-top: 50px;
}

.top-header .header-citations i {
	font-size: 20px; margin: 35px 10px 10px 10px; width: 35px; height: 35px; background: #fff; color: #dd0301; position: relative; padding: 8px 0px 0px 9px;
}

.top-header .quote-cta {
	    padding:5px;
    margin-top: 45px;
    font-weight: 500; width: fit-content;
    font-family: 'font2';
    color: #fff;
    
}
.top-header .quote-cta a {
	color: #fff;
}
.top-header .quote-cta i {
	font-size: 35px; position: relative; top: 20px;
}
.top-header .quote-cta  h6 {
	font-size: 12px; font-family: font3;
}
.top-header div[class*='col-']:nth-child(3) a:hover {

}
.top-header div[class*='col-']:nth-child(4) {
	
}
.top-header div[class*='col-']:nth-child(4) a {
	
}
.top-header div[class*='col-']:nth-child(4) a:hover {
	
}
.top-header div[class*='col-']:nth-child(5) {
	
}
.top-header div[class*='col-']:nth-child(5) a {
	
}
.top-header div[class*='col-']:nth-child(5) a:hover {
	
}
.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;
}


.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: rgb(83,82,82); width: 100%; z-index: 2;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.navbar-scroll .container {
	background: rgb(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: 900; font-size: 18px; color: rgb(255,255,255); font-family: 'font2';
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav
.nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light
.navbar-nav .show>.nav-link {
	color: rgb(255,255,255);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: rgb(196,41,56);
}
.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);
}





.background-video {
    width: 100%;
    height: 1000px;
    overflow: hidden;
    object-fit: cover;
}
.video-overlay {
    position: relative;
    padding: 100px 000px 100px 200px;
    background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 85%) 65%);
    margin-top: -990px;
    width: 100%;
    height: 1000px;
    margin-bottom: -215px;
}
.video-overlay .row {
	--bs-gutter-x: 0;
}
.video-overlay h1 {
	font-family: font4; font-size: 45px; color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;  margin-bottom: 50px;text-shadow: 1px 1px 1px #000;
}
.video-overlay h1 span {
	font-size: 20px; font-family: font2; font-weight: 500; color: #fff; text-transform: capitalize; letter-spacing: 1px;  
}
.video-overlay h1 i {
	font-family: font4; letter-spacing: 3px; font-weight: 500; font-size: 40px; color: #9B3639;
}
.video-overlay h3 {
	font-family: font4;
    letter-spacing: 1px;
    font-size: 25px;
    text-transform: uppercase; text-shadow: 1px 1px 1px #000;
    color: #fff;
}
.video-overlay h3 span {
	color: #dd0301;
}
.video-overlay h4 {
	padding: 35px; border-radius: 10px; color: #fff; font-size: 20px; letter-spacing: 2px; width: fit-content;
	background: #0d5993; text-align: center; font-family: font3; font-weight: 600; text-transform: uppercase;
}
.video-overlay h4:hover {
	box-shadow: 0px 0px 0px 15px #0d5993;  border-radius: 0px;
}
.video-overlay p {
	font-size: 20px; line-height: 35px; font-family: font3; 
	letter-spacing: 1px; color: #fff; padding: 35px 15px 35px 15px;   text-shadow: 1px 1px 1px #000;
}
.video-overlay .boxer1 {
	padding: 25px; 
}
.video-overlay .boxer2 {
	padding: 15px; 
}
.home1 {
	padding: 75px 0 75px 150px; background: #a3cff024; 
}
.home1 .pusher {
	--bs-gutter-x: -96px;
}
.home1 .pad {
	padding: 75px 5px 75px 5px;     /*background: linear-gradient(to right, #0000006e, #0000006e), url(/img/homepage/grid-4.png);*/
    background-size: 15%;
    background-color: #0009;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%; border-right: 2px solid #fff; height: 300px; width: 300px;
}
.home1 .pad:hover {
border-radius: 100%; background: #000; margin-top: -50px; transition: .7s; box-shadow: 10px -10px 0px 0px #f9f9f9; transform: rotate(360deg);

}
.home1 .pad:hover h3 {
	color: #fff;
}
.home1 .pad:hover i {
	color: #fff;
}
.home1 .pad2 {
	padding: 75px 15px 75px 15px;     /*background: linear-gradient(to right, #0000006e, #0000006e), url(/img/homepage/grid-4.png);*/
    background-size: 15%;
    background-color: #0009;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%; border: none; height: 300px; width: 300px;
}
.home1 .pad2:hover {
border-radius: 100%;background: #000; margin-top: -50px; transition: .7s; box-shadow: 10px -10px 0px 0px #f9f9f9; transform: rotate(360deg);
}
.home1 .pad2:hover h3 {
	color: #fff;
}
.home1 .pad2:hover i {
	color: #fff;
}
.home1 .cawntent {
	padding: 75px 0px 75px 0px;
}
.home1 h2 {
	font-family: font4; font-size: 35px; letter-spacing: 1px; color: #000;
}
.home1 h3 {
	font-family: 'font3'; font-size: 25px; text-align: center; font-weight: 500; color: #fff;
}
.home1 p {
	font-size: 20px; font-family: 'font3'; font-weight: 500; text-align: justify; color: rgb(45, 45, 45);
}
.home1 span {
	color: rgb(83,82,82);
}

.home1 i {
	font-size: 50px; color: #fff; margin-bottom: 25px; text-align: center;
}

.home1 img {
	max-width: 75%; box-shadow: -15px -15px 0px 0px #000; border: 5px double  #fff;
}

.home2 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/grid-4.png);
    background-size: 15%; padding: 200px 0px 200px 0px; background-color: #000;
    background-repeat: repeat; background-attachment: fixed;
    height: 100%; color: #fff;
}

.home2 .residential {
	 background: #000;    box-shadow: -15px -15px 0px 0px #282828;
    border: 3px solid #fff;
}

.home2 .commercial {
	 background: #000;    box-shadow: 15px -15px 0px 0px #282828;
    border: 3px solid #fff;
}

.home2 .hvac-content {
	padding: 50px 15px 00px 15px;
}

.home2 h3 {
	font-family: font4; font-size: 30px;
}
.home2 p {
	font-size: 20px; font-family: 'font3'; font-weight: 500; 
}

.home2 img {
	border-right: 2px solid #fff; box-shadow: 0px 0px 10px 1px #000;
}

.home3 {
 color: #000; 
	
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/black-grid-25.png);
    background-size: 15%;
    padding: 50px 0px 75px 0px;
    background-color: #fff;
	text-align: center;
}

.home3 h2 {
	font-family: font2; font-size: 20px; line-height: 50px;
}

.home3 h2 span {
	font-size: 30px;
}

.home3 h3 {
	font-family: font4; letter-spacing: 1px; font-size: 20px;
}
.home3 p {
	font-size: 20px; font-family: 'font3'; font-weight: 500; 
}

.home3 mark {
	padding: 25px; border-radius: 10px; font-family: font3; font-size: 20px; background: #fff; border: 2px solid #000;
}

.home3 .bawks {
    padding: 35px 50px 50px 50px;
    margin-top: 50px;
    border: 2px solid #000;
    background: #0000001a;
    box-shadow: 15px -15px 0px 0px #000;
}


.home3 .bawks2 {
	padding: 15px; margin: 10px 25px 10px -25px; border: 2px solid #000; background: #0000001a;
}

.home3 .bawks2:hover {
	background: #000; color: #fff; cursor: pointer;
}

.hvac-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.hvac-modal-overlay.active {
  display: flex;
}

.hvac-modal-box {
  background: #fff;
  display: flex;
  max-width: 900px;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  position: relative;
}

.hvac-modal-left {
  flex: 1;
  padding-right: 20px;
}

.hvac-modal-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hvac-modal-right {
  flex: 1;
}

.hvac-modal-right h2 {
  font-family: font2;
  font-size: 28px;
  margin-bottom: 10px;
}

.hvac-modal-right p {
  font-family: font3;
  font-size: 18px;
  margin-bottom: 10px;
}

.hvac-modal-right ul {
  font-family: font3;
  font-size: 16px;
  padding-left: 20px;
}

.hvac-modal-right ul li {
  margin-bottom: 8px;
}

.hvac-modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}

.home4 {
	position: relative; background: #fff;
}

.home4 .maintenance-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/hvac-maintenance-2.jpg);
    background-size: cover;  position: relative;
    background-repeat: no-repeat; 
    height: 100%;
}
.home4 .maintenance-content {
	padding: 150px 25px 150px 75px;
}

.home4 h3 {
	font-family: font4; font-size: 35px;
}

.home4 h4 {
	font-family: font3; font-size: 25px; line-height: 45px;
}

.home4 p {
	font-size: 20px; font-family: 'font3'; font-weight: 500; 
}

.heating-service-cards {
     background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/grid-4.png);
    background-size: 15%;
    padding: 50px 0px 200px 0px;
    background-color: #f06362;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%;
}

.heating-service-cards h2 {
	font-family: font4; font-size: 45px; letter-spacing: 1px; text-align: center;color: #fff; padding: 100px 0px 100px 0px;
}


.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  position: relative;
  background: #fff;
  border: 2px solid transparent;
	width: 75%; left: 25%;
  padding: 30px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: -1;
}

.card:hover::before {
  transform: scaleY(1);
}

.heating-service-cards .card i {
  font-size: 40px;
  color: #dd0301;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

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

.card h3 {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}


.card p {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
		    font-size: 18px;
    font-family: 'font3';
    font-weight: 500;
}

.card:hover {
  border-color: #fff; box-shadow: 1px 1px 10px 1px #000;
}

.card:hover h3,
.card:hover p {
  color: #fff;
}



@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.home-heat {
 color: #dd0301;
	
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/red-grid-25.png);
    background-size: 15%;
    padding: 100px 0px 150px 0px;
    background-color: #fff;
	text-align: center;
}

.home-heat h2 {
	font-family: font2; font-size: 20px; letter-spacing: 1px; line-height: 30px;
}
.home-heat h2 span {
	font-size: 30px; letter-spacing: -1px;
}

.home-heat h3 {
	font-family: font4; font-size: 20px; letter-spacing: 1px;
}

.home-heat p {
	    font-size: 20px;
    font-family: 'font3';
    font-weight: 500;
}

.home-heat mark {
	    padding: 25px;
    border-radius: 10px;
    font-family: font3;
    font-size: 20px; color: #dd0301;
    background: #fff; border: 2px solid #dd0301;
}

.home-heat .bawks {
    padding: 35px 50px 50px 50px; margin-top: 50px; border: 2px solid #dd0301; background: #dd030117; box-shadow: 15px -15px 0px 0px #dd0301;
}

.home-heat .bawks2 {
	padding: 15px; margin: 10px 25px 10px -25px; border: 2px solid #dd0301; background: #fff; color: #dd0301;
}

.home-heat .bawks2:hover {
	cursor: pointer; background: #dd0301; color: #fff;
}

.heating-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.heating-modal-overlay.active {
  display: flex;
}
.heating-modal-box {
  background: #fff;
  display: flex;
  max-width: 900px;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  position: relative;
}
.heating-modal-left {
  flex: 1;
  padding-right: 20px;
}
.heating-modal-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.heating-modal-right {
  flex: 1;
}
.heating-modal-right h2 {
  font-family: font2;
  font-size: 28px;
  margin-bottom: 10px;
}
.heating-modal-right p {
  font-family: font3;
  font-size: 18px;
  margin-bottom: 10px;
}
.heating-modal-right ul {
  font-family: font3;
  font-size: 16px;
  padding-left: 20px;
}
.heating-modal-right ul li {
  margin-bottom: 8px;
}
.heating-modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}


.home-faqs {
	background: #d5d5d5; 
}

.home-faqs h4 {
font-family: font2;
    font-size: 55px;
    color: #fff;
    padding: 35px;
    text-shadow: 0px 0px 5px #dd0301;
}

.home-faqs .faq-image {
		background: linear-gradient(to right, #00000069, #00000069), url(/img/homepage/hvac-01.jpg);
    background-size: cover; position: relative;
    background-repeat: no-repeat; 
    height: 850px;  margin-right: -48px; margin-left: 48px;
}

/* Tabs styling */
#faqTab .nav-link {
  font-weight: 500; font-family: font3; font-size: 20px;
  color: #0e66a5; width: 100%; border-radius: 0px; text-align: left;

  transition: background-color 0.3s, color 0.3s;
}
#faqTab .nav-link.active {
  background-color: #0e66a5;
  color: #fff;
}
#faqTab .nav-link:hover {
  background-color: #e0effa;
  color: #0e66a5;
}


.nav-tabs {
	background: #fff; display: block; position: relative; left: 21.5%; width: 100%; padding: 50px 20px 50px 20px; 	border: none;
}
.nav-tabs li {
	list-style: none;
}
.nav-tabs button {
	width: 100%;
}
/* Tab content padding */
.tab-pane {
  padding: 100px 50px;
  background-color: #fff;
     	border: none; height: 100%;
  border-radius: 0px;
}

.tab-content {
	width: 100%; height: 100%;
}

/* Accordion headers */
.accordion-button {
  font-weight: 600;
  color: #333;
  background-color: #fff;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}

.accordion-button:not(.collapsed) {
  background-color: #0e66a5;
  color: #fff;
}

.accordion-button::after {
  filter: brightness(0.5);
}

.accordion-body {
  font-size: 15px;
  color: #555;
  background-color: #fff;
  line-height: 1.6;
  border-top: 1px solid #ddd;
  padding: 20px;
}

/* Section headings */
#cooling-faq-title,
#heating-faq-title,
#hvac-faq-title {
  font-size: 22px;
  font-weight: bold;
  color: #0e66a5;
  margin-bottom: 20px;
  text-align: center;
}


.faq-section {
  padding: 60px 30px 60px 200px;
  background: #f8f9fa;
}

.faq-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0e66a5;
  font-weight: bold;
  text-align: center;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: #fff;
  font-weight: 600;
  color: #333;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #0e66a5;
  color: #fff;
}

.accordion-body {
  font-size: 14px;
  color: #555;
  padding: 20px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section .col-md-4 {
    margin-bottom: 30px;
  }
}


.cooling-service-cards {
  background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/grid-4.png);
  background-size: 15%;
  padding: 50px 0px 200px 0px;
  background-color: #5094c6;
  background-repeat: repeat;
  background-attachment: fixed;
  height: 100%;
}

.cooling-service-cards h2 {
  font-family: font4;
  font-size: 45px;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
  padding: 100px 0px 100px 0px;
}

.cooling-service-cards .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.cooling-service-cards .card {
  position: relative;
  background: #fff;
  border: 2px solid transparent;
  
  padding: 30px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.cooling-service-cards .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: -1;
}

.cooling-service-cards .card:hover::before {
  transform: scaleY(1);
}

.cooling-service-cards .card i {
  font-size: 40px;
  color: #0d5993;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.cooling-service-cards .card h3 {
  font-family: font3;
  font-size: 22px;
  font-weight: 600;
}

.cooling-service-cards .card h3,
.cooling-service-cards .card p {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.cooling-service-cards .card:hover {
  border-color: #fff;
  box-shadow: 1px 1px 10px 1px #000;
}

.cooling-service-cards .card:hover h3,
.cooling-service-cards .card:hover p {
  color: #fff;
}


.home-cool {
	padding: 100px 0px 100px 0px; color: #0d5993; 
	
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/blue-grid-25.png);
    background-size: 15%;
    background-color: #fff;
	text-align: center; 
}

.home-cool h2 {
	font-family: font2; font-size: 20px; letter-spacing: 1px; line-height: 30px;
}
.home-cool h2 span {
	font-size: 30px; letter-spacing: -1px;
}

.home-cool h3 {
	font-family: font4; font-size: 20px; letter-spacing: 1px;
}

.home-cool p {
	    font-size: 20px;
    font-family: 'font3';
    font-weight: 500;
}

.home-cool mark {
	    padding: 25px;
    border-radius: 10px;
    font-family: font3; border: 2px solid #0d5993;
    font-size: 20px;
    background: #fff; color: #0d5993;
}

.home-cool .bawks {
	padding:  50px; margin-top: 50px; border: 2px solid #0d5993;  background: #0d59932b; box-shadow: 15px -15px 0px 0px #0d5993;
}

.home-cool .bawks2 {
	padding: 15px; border: 2px solid #0d5993;  background: #fff; margin: 10px 25px 10px -25px; color: #0d5993;
}

.home-cool .bawks2:hover {
	cursor: pointer; background: #0d5993; color: #fff;
}

.cooling-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.cooling-modal-overlay.active {
  display: flex;
}
.cooling-modal-box {
  background: #fff;
  display: flex;
  max-width: 900px;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  position: relative;
}
.cooling-modal-left {
  flex: 1;
  padding-right: 20px;
}
.cooling-modal-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.cooling-modal-right {
  flex: 1;
}
.cooling-modal-right h2 {
  font-family: font2;
  font-size: 28px;
  margin-bottom: 10px;
}
.cooling-modal-right p {
  font-family: font3;
  font-size: 18px;
  margin-bottom: 10px;
}
.cooling-modal-right ul {
  font-family: font3;
  font-size: 16px;
  padding-left: 20px;
}
.cooling-modal-right ul li {
  margin-bottom: 8px;
}
.cooling-modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}


.why-choose-us-vertical {
  display: flex;
  flex-direction: row;
  padding: 100px 0;
  background: #f5f5f5;
}

.why-choose-us-vertical h4 {
	font-family: font4; letter-spacing: 2px;
}

.why-choose-us-vertical p {
	    font-size: 20px;
    font-family: 'font3'; text-align: center;
    font-weight: 500;
}

.intro-section {
      flex: 1;
    background: linear-gradient(to right, #ffffffd6, #ffffffd6), url(/img/homepage/black-grid-75.png);
    background-size: 15%;
    background-color: #ffffffba;
    text-align: center;
    background-repeat: repeat;
    color: #000000;
    padding: 50px;
    height: 100%;
    min-width: 400px;
}
.intro-section .intro-title {
  font-size: 48px;
  font-family: font2; text-align: center;
  margin-bottom: 20px;
}
.intro-section .intro-subtitle {
  font-size: 24px;
  font-weight: 500; text-align: center;
  margin-bottom: 15px;
}

.vertical-scroll-area {
  flex: 1;
  max-height: 600px;
  overflow-y: auto;
  padding: 30px 20px;
}
.vertical-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.why-choose-us-vertical .card {
  background: #fff;
  padding: 30px;
		left: 0%;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}
.why-choose-us-vertical .card:hover {
  transform: translateY(-5px);
  background: #0d5993;
  color: #fff;
}
.why-choose-us-vertical .card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #0d5993;
  transition: color 0.3s;
}
.why-choose-us-vertical .card:hover i {
  color: #dd0301;
}
.why-choose-us-vertical .card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.why-choose-us-vertical .card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.why-choose-us-vertical .card ul li {
  font-size: 15px;
  padding: 5px 0;
}

.vertical-carousel {
  position: relative;
  height: calc(2 * 240px); /* Adjust based on actual .card height */
  overflow: hidden;
}


.vertical-card-wrapper {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s ease-in-out;
}

.carousel-controls {
    left: 35%;
    position: relative;
    top: 5%;
}

.carousel-controls.horizontal {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.carousel-btn {
  background-color: #0d5993;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background-color: #dd0301;
}



/**** About Section ****/
.about-intro {
		background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/about-hvac-1.jpg);
    background-size: cover; padding: 200px 0px 400px 0px; background-position: center bottom;
    background-repeat: no-repeat; height: 100%; background-attachment: fixed;
}

.about-intro .intro-content {
  padding: 50px;
  background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/black-grid-75.png);
  background-size: 15%;
  background-attachment: fixed;
  background-color: #fff !important;
  border: 2px solid #6d827b;
  animation: boxShadowCycle 6s infinite ease-in-out;
}

/* Animation keyframes for cycling box-shadow color */
@keyframes boxShadowCycle {
  0% {
    box-shadow: -15px -15px 0px 0px #000;
  }
  33% {
    box-shadow: -15px -15px 0px 0px #dd0301;
  }
  66% {
    box-shadow: -15px -15px 0px 0px #0d5993;
  }
  100% {
    box-shadow: -15px -15px 0px 0px #000;
  }
}

.about-intro .intro-content2 {
	padding: 25px;  background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/red-grid-75.png);
    background-size: 15%; background-attachment: fixed;
		background-color: #fff !important; box-shadow: 10px -10px 0px 0px #ed3b3b; border: 1px solid #dd0301; margin: 25px 0px 25px 0px;
}

.about-intro .intro-content3 {
	padding: 25px;  background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%; background-attachment: fixed;
		background-color: #fff !important; box-shadow: 10px -10px 0px 0px #419fe2; border: 1px solid #0d5993; margin: 25px 0px 25px 0px;
}

.about-intro .intro-content4 {
	padding: 25px;  background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/black-grid-75.png);
    background-size: 15%; background-attachment: fixed;
		background-color: #fff !important;  box-shadow: 10px -10px 0px 0px #282828; border: 1px solid #000; margin: 25px 0px 25px 0px;
}

.about-intro h1 {
	font-family: font2; font-size: 25px; line-height: 50px; color: #444;
}

.about-intro h1 span {
	font-family: font4; font-size: 35px; color: #000; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.about-intro h1 i {
	font-family: font4; letter-spacing: 3px; font-size: 35px; color: #736c45; font-weight: 500;
}

.about-intro h3 {
	font-family: font3; font-size: 20px; text-align: center; color: #000;
}

.about-intro p {
	font-size: 17px; font-family: 'font3'; font-weight: 500; letter-spacing: 1px; line-height: 30px;
}

.about-history {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/grid-4.png);
    background-size: 15%;
    background-color: #f06362;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%;
}
.about-history .container {
	background-color: #fff !important;
    background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/red-grid-75.png);
    background-size: 15%; background-attachment: fixed; padding: 100px 0px 0px 25px;
}
.about-history h2 {
	font-family: font2; font-size: 30px; margin-bottom: 100px; line-height: 85px; margin-left: 150px;
}


.about-history h2 span {
	font-family: font4; font-size: 50px; color: #dd0301; font-weight: 600;letter-spacing: 1px; text-transform: uppercase;
}

.about-history h2 i {
	font-family: font4; letter-spacing: 2px; color: #736c45; font-weight: 500;
}

.about-history h3 {
	font-family: font2; font-size: 35px; color: #00; margin-bottom: 50px;
}

.about-history p {
	font-size: 17px; font-family: 'font3'; font-weight: 500; letter-spacing: 1px; line-height: 30px;
}
.about-history p i {
	font-weight: 600;
}
.about-history .history-content {
	padding: 150px 25px 150px 25px; 
}



.about-history .history-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/history-hvac-2.jpg);
    background-size: cover; /*border-top-left-radius: 15px; border-bottom-left-radius: 15px;*/
    background-repeat: no-repeat; height: 100%; box-shadow: -10px -10px 0px 0px #dd0301; border: 2px solid #000; border-right: none;
}

.about-expertise {
	padding: 200px 50px 200px 50px; 	background-color: #fff !important;
    background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%; background-attachment: fixed;
}

.about-expertise h3 {
	font-family: font3; font-size: 25px;
}

.about-expertise p {
	font-size: 15px; font-family: 'font3'; font-weight: 500; letter-spacing: 1px; line-height: 30px;
}


.about-expertise .about-card-1 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/repairs-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px;
    background-repeat: no-repeat; height: 100%;
}

.about-expertise .about-card-2 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/install-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px;
    background-repeat: no-repeat; height: 100%;
}

.about-expertise .about-card-3 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/replace-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px;
    background-repeat: no-repeat; height: 100%;
}

.about-expertise .about-card-4 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/maintenance-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px;
    background-repeat: no-repeat; height: 100%;
}

.about-expertise .about-card-5 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/estimate-2.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px;
    background-repeat: no-repeat; height: 100%;
}

.about-expertise .about-card-6 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/emergency-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px;
    background-repeat: no-repeat; height: 100%;
}

.about-expertise {
      padding: 200px 20px;
     background-color: #fff !important;
    background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%; background-attachment: fixed;
    }
.about-card-1 { background-image: url(/img/about/repair-1.jpg); }
.about-card-2 { background-image: url(/img/about/install-1.jpg); }
.about-card-3 { background-image: url(/img/about/replace-1.jpg); }
.about-card-4 { background-image: url(/img/about/maintenance-1.jpg); }
.about-card-5 { background-image: url(/img/about/estimate-2.jpg); }
.about-card-6 { background-image: url(/img/about/emergency-1.jpg); }

/* Flip card container */
.flip-card {
  perspective: 500px;
  position: relative;
  overflow: hidden;
/* border-radius: 15px;*/ width: 75%;
  margin-bottom: 30px; left: 15%;
  background: #eee; border: 5px solid transparent;
}

.flip-card:hover {
	    border: 5px double #0d5993; box-shadow: 1px 1px 10px 1px #000;
}

/* Title bar always visible */
.title-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px; /*border-top-right-radius: 15px; border-top-left-radius: 15px;*/
  background: #0d5993;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  z-index: 10;
  font-family: font3;
}

.title-bar i {
  font-size: 20px;
}

.title-bar h3 {
  margin: 0;
  font-size: 20px;
}

/* Curtains */
.curtain {
  position: absolute;
  top: 60px; /* below title bar */
  width: 50%;
  height: calc(100% - 60px);
  background: #00000059;
  z-index: 5;
  transition: transform 1s ease;
}

.left-curtain {
  left: 0;
  transform: translateY(0);
}

.right-curtain {
  right: 0;
  transform: translateY(0);
}

.flip-card:hover .left-curtain,
.flip-card:hover .right-curtain {
  transform: translateY(100%);
}

/* Flip container */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 350px;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 60px; /* push down below title */
  width: 100%;
  height: calc(100% - 60px);
  backface-visibility: hidden;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

/* Background image card face */
.about-card-1 {
  background: url(/img/about/bc-13.jpg) center/cover no-repeat;
}

/* Back face */
.flip-card-back {
  background: #fff;
  color: #000;
  transform: rotateY(180deg);
  padding: 30px;
  box-sizing: border-box;
  font-family: font2;
}

.flip-card-back h3 {
  font-family: font2;
  font-size: 20px; color: #0d5993;
  margin-bottom: 15px;
}

.flip-card-back p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .flip-card-inner {
    height: 350px;
  }

  .title-bar {
    height: 50px;
    font-size: 16px;
  }

  .flip-card-back h3 {
    font-size: 17px;
  }
}

.why-choose-us {
  padding: 200px 20px;
     background: linear-gradient(to right, rgb(255 255 255 / 51%), rgb(255 255 255 / 53%)), url(/img/about/hvac-choose-1.jpg) center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}


.why-choose-us .why-header h2 {
  font-size: 45px;
  font-family: font2;  font-weight: 600; letter-spacing: 1px; color: #000;
  margin-bottom: 10px;
}

.why-choose-us .why-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-family: font2;
  line-height: 1.6;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.why-card {
       background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/black-grid-75.png);
    background-size: 15%; background-attachment: fixed;
		background-color: #fff !important;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  flex: 1 1 250px;
  max-width: 350px;
  text-align: left;
}

.why-card h3 {
 font-size: 20px;
    font-family: 'font2';
    margin-bottom: 10px;
    color: #000;
}

.why-card p {
  font-size: 16px;
  font-family: font3;
  margin-bottom: 10px;
  line-height: 1.5;
}

.why-card ul {
  padding-left: 20px;
  list-style-type: disc;
  color: #444; line-height: 30px;
  font-family: font4;
  font-size: 15px;
}

@media (max-width: 768px) {
  .why-cards {
    flex-direction: column;
    align-items: center;
  }

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


/**** Services Section ****/
.service-starter {
	padding: 200px 0px 200px 0px;     background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/bcg-graphic-1.jpg);
    background-size: cover; background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100%;
}
.service-starter  .starter-content {
	padding: 100px 50px; background: #fff9; border-radius: 10px;
}

.service-starter .portfolio-link {
	padding: 25px; border-radius: 7px; background: #465e55; width: 315px; margin-left: 100px;
}

.service-starter .service-link {
	padding: 25px; border-radius: 7px; background: #839e94; width: 315px; margin-left: 100px;
}

.squisha {
	width: 200px !important; padding: 25px 10px 25px 10px !important;
}

.service-starter h1 {
	font-family: font3; font-size: 35px; 
}

.service-starter h1 strong {
	color: #465e55;
}
.service-starter h1 span {
	font-size: 25px; font-family: font2; letter-spacing: 1px; color: #000;
}

.service-starter h1 i {
	font-family: font4; letter-spacing: 3px; font-weight: 500; color: #736c45;
}
.service-starter h4 {
	font-family: font3; font-size: 20px; text-align: center; color: #fff;
}

.service-starter p {
	font-family: font2; font-size: 17px; line-height: 35px;
}

.service-intro {
	 background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/granite-texture-1.png);
    background-size: contain; padding: 200px 300px 200px 300px;
		background-color: #fff !important;
    background-attachment: fixed;
}

.service-intro .intro-legend {
	padding: 50px; background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/granite-texture-1.png);
    background-size: contain; border-radius: 10px;
		background-color: #3b4f48 !important;
    background-attachment: fixed;; border: 5px double #3b4f48;
}
.service-intro .intro-image-carousel img {
	max-width: 80%; border-radius: 10px;
}
.service-intro .intro-logo img {
	max-width: 60%; margin-top: -75px; margin-bottom: 25px;
}

.service-intro .intro-card {
	text-align: center; padding: 45px 15px 45px 15px; border-radius: 10px; border: 2px dotted #3b4f48; background: #fff; margin-top: 100px;
}

.service-intro  h3 {
	font-family: font3; font-size: 25px; color: #3b4f48; font-weight: 600;
}

.service-intro  h4 {
	font-family: font2; font-size: 17px; color: #000;
}

#introImageSliderUnique {
  transition: opacity 0.5s ease-in-out;
}

.our-services {
	 background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/granite-texture-1.png);
    background-size: contain; 
		background-color: #3b4f48 !important; padding: 200px 0px 300px 0px;
    background-attachment: fixed;;
}
.our-services  .our-service-card {
	padding: 35px 15px 15px 15px; border: 2px solid #333; height: 225px; width: 225px; border-radius: 100%; text-align: center; 
}
.our-services h4 {
	font-family: font3; font-size: 20px; 
}

.our-services p {
	font-family: font2; font-size: 15px; line-height: 30px;
}
/* SECTION STYLING */
.circleTabs-section {
 
  background: linear-gradient(to right, #3b4f488a, #3b4f488a), url(/img/homepage/granite-texture-1.png);
  background-size: contain;
  background-attachment: fixed;
  background-color: #3b4f48 !important;
  font-family: font2;
  text-align: center;
}

.circleTabs-section .container {
	background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/granite-texture-1.png);
  background-size: contain;
  background-attachment: fixed; padding: 150px 0;
  background-color: #fff !important;
}

.circleTabs-section h2 {
	font-family: font3; font-size: 45px; color: #445e54;
}

.circleTabs-section p {
	font-family: font2; font-size: 17px; line-height: 35px; margin: 25px 75px 100px 75px;
}

.circleTabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.circleTabs-left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.circleTabs-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.circleTabs-center {
  position: relative;
  width: 700px;
  height: 700px;
}

.circleTabs-img {
width: 440px;
    height: auto;
    border-radius: 12px;
    z-index: 1;
    position: relative;
    top: 225px;
}

.circleTabs-buttons {
  position: absolute;
  top: 0;
  left: 0;
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 2;
}

.circle-tab-button {
  pointer-events: auto;
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #333;
  font-family: font3;
  font-size: 14px;
  padding: 10px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transform-origin: center;
  user-select: none;
  z-index: 3;
}

.circle-tab-button:hover,
.circle-tab-button.active {
  background: #c5dfdb;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.circleTabs-content {
  max-width: 400px;
	    margin-left: -50px;
    margin-right: 50px;
}

.circle-tab-content {
  display: none;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: fadeInTab 0.5s ease-in-out;
}

.circle-tab-content.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .circleTabs-wrapper {
    flex-direction: column;
  }

  .circleTabs-center {
    width: 100%;
    height: auto;
  }

  .circleTabs-buttons {
    display: none;
  }

  .circleTabs-img {
    width: 80%;
    margin: 0 auto;
  }

  .circle-tab-content {
    margin-top: 30px;
  }
}

.service-applications {
	background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/granite-texture-1.png);
  background-size: contain;
  background-attachment: fixed; padding: 150px 0 250px 0;
  background-color: #fff; margin-bottom: -80px;
}

.service-applications h2 {
	font-family: font3; font-size: 45px; color: #3f544c; text-align: center; margin-bottom: 100px;
}


.application-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease;
}

.application-bg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

/* Overlay content hidden initially */
.application-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 20px;
  width: 100%;
  height: 100%;
  z-index: 3;
  color: #3b4f48;
  background: rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.4s;
  font-family: font2;
}

.application-overlay h3 {
  font-family: font3;
  font-size: 24px;
  margin-bottom: 10px;
}

.application-overlay p {
  font-size: 15px;
  margin-bottom: 15px;
}

.application-overlay ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

.application-overlay li {
  margin: 5px 0;
}

/* Curtain Doors */
.application-door {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  background-color: #7b8f88;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: font3;
  font-size: 20px;
  color: #fff;
  transition: transform 0.5s ease;
  pointer-events: none;
  text-align: center;
}

.left-door {
  left: 0;
  transform: translateX(0%);
}

.right-door {
  right: 0;
  transform: translateX(0%);
}

.left-door span,
.right-door span {
  white-space: pre-line;
  line-height: 1.2;
}

/* Hover Effects */
.application-card:hover .left-door {
  transform: translateX(-100%);
}

.application-card:hover .right-door {
  transform: translateX(100%);
}

.application-card:hover .application-overlay {
  opacity: 1;
  pointer-events: auto;
}

.application-card:hover .application-bg img {
  transform: scale(1.03);
}

.application-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.services-options {
background: linear-gradient(to right, #3b4f488a, #3b4f488a), url(/img/homepage/granite-texture-1.png);
  background-size: contain;  text-align: center;
  background-attachment: fixed;
  background-color: #3b4f48;    border-top-right-radius: 5%;
    border-top-left-radius: 5%;
}
.services-options .container {
	    background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/granite-texture-1.png);
    background-size: contain;
    background-attachment: fixed;
    padding: 150px 50px 200px 50px;
    background-color: #fff;
}
.services-options .container-fluid {
	padding: 100px 150px 50px 150px;
	background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/granite-texture-1.png);
  background-size: contain;  
  background-attachment: fixed; height: 600px;    border-top-right-radius: 10%;
    border-top-left-radius: 10%;
  background-color: #fff; 
}

/* Base card */
.services-options .option-perk {
  position: relative;
  padding: 50px 25px;
  border-radius: 5px;
  border: 2px dotted #546b62;
  text-align: left;
  margin-top: 100px;
  background: #fff;
  overflow: hidden;
  transition: background 0.4s ease;
  z-index: 1;
}

/* Peel background */
.services-options .option-perk::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: #839e94;
  transform: rotate(-45deg);
  transform-origin: top left;
  transition: transform 0.6s ease;
  z-index: 0;
}

/* Hover effect */
.services-options .option-perk:hover::before {
  transform: rotate(0deg);
}

/* Keep content above peel */
.services-options .option-perk * {
  position: relative;
  z-index: 2;
}

/* Peel icon */
.services-options .option-perk::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #839e94;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 3;
  pointer-events: none;
}
.services-options .option-perk:hover {
  color: #fff;
}

.services-options .option-perk:hover h5,
.services-options .option-perk:hover p {
  color: #fff;
}



.services-options .option-perk p {
	font-size: 15px; line-height: 25px; font-family: font2;
}

.services-options .option-card {
	padding: 40px;
}

.services-options .option-card:hover {
	background: #fff; box-shadow: 1px 1px 10px 1px #3b4f48; border-radius: 10px;
}

.services-options .option-card:hover img {
	max-width: 50%;
}

.services-options .option-card:hover p  {
	display: block;
}

.services-options .option-card p {
	line-height: 25px; font-size: 15px; display: none;
}

.services-options h3 {
	font-family: font3; font-size: 35px;
}

.services-options h4 {
	font-family: font3; font-size: 20px; padding: 15px 0px 10px 0px;
}

.services-options h5 {
	font-family: font3; font-size: 23px;
}

.services-options p {
	font-family: font2; font-size: 17px; line-height: 30px;
}

.services-options  img {
	border-radius: 100%;
}




.service-start {
	padding: 150px 100px 150px 100px;     background-image: linear-gradient(#ed1d26, #ed1d267d), url(/img/homepage/tr-1.png); color: #fff;
}

.service-start h1 {
	font-family: font3; font-size: 35px;
	
}
.service-start h2 {
	font-family: font2; font-size: 25px; padding: 10px; text-align: center; color: #ed1d26;
}
.service-start h2:hover {
	color: #fff; background: #ed1d26; border-radius: 10px; font-weight: 600;
}
.service-start  p {
	font-family: Atlassian Sans; font-size: 17px; line-height: 35px;
}

.service-start .intro-content {
}
.service-start .intro-legend {
	background: #fff; padding: 25px; border-radius: 15px;
}

.service-hub {
	position: relative; padding: 100px 0px 100px 0px; background: #f5f5f5;
}

.service-hub .link-card {
	background: #fff; border: 2px solid #ed1d26; height: auto; position: relative;
	
	/*height: 650px;*/
	height:700px;
	
	
	
	margin: 25px 0px 25px 0px;
	
	
	
		/*transform: translateX(300px); */
	transition: transform 1.5s, opacity 1.5s, box-shadow 1s, background-color 0.5s;;
	border-radius: 0.8rem; 
	overflow: hidden;
	padding: 0;
	
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; 
}

.service-hub .link-card h3 {
	font-family: font3; 
	color: #fff;
	font-size:1.2rem;
}

.service-hub .link-card img {
	height: 325px; width: 100%;
}
.service-hub .link-card:hover {
	 background: #ed1d26; color: #fff;
}

.service-hub .link-card:hover h2 {
	font-family: font3; 
	color: #fff;
}

.service-hub .link-card:hover p {
	color: #fff;
}

.service-hub .link-card:hover mark {
	display: block;
}



.service-hub .link-card .card-data{
	position: absolute;
	display: flex;
	flex-direction: column; 
	justify-content: center;
	align-items: center; 
	
	
	bottom: -6rem;
	width: 100%;
	height: 75px; ; 
    left: 0%;
    transform: translate(-50%, -50%);
	border: 2px solid white;
	border-radius: 0.8rem;
	background: #0d5993;
	padding: 20px;
	box-shadow: 1px 1px 8px black;; 
	margin-inline: auto; 	
	/*opacity: 0;*/
	transform: translateY(100%);
		transition: 1s;
		
		
		color: white;
		font-family: 'font3'; 

}

.service-hub .link-card:hover .card-data{
	opacity: 1;
	transform: translateY(-0%);
	animation: show-data 1s forwards ;
	
}
.service-hub .link-card:hover {
	animation: remove-overflow 1s forwards ;
}


.service-hub .link-card:not(:hover) {
	animation: show-overflow 1s forwards ;
}

.service-hub .link-card:not(:hover) .card-data{
	animation: remove-data 1s forwards ;
}





/*CARD ANIMATIONS START -------------------------*/


@keyframes show-data{
	50%{	
		transform: translateY(-7rem); 
	}

	100%{
		transform: translateY(-4rem); 
	}
}

@keyframes remove-overflow{
	to{
		overflow: initial; 
	}
}


@keyframes remove-data{
	
	0%{
			transform: translateY(-2rem);
	}
	50%{
			transform: translateY(-7rem);
	}
	100%{
			transform: translateY(0.5rem);
	}
	
}

@keyframes show-overflow{
	
	0%{
		overflow: initial;
		pointer-events: none; 
	}
	
	100%{	
		overflow: hidden; 
	}
	
	
}

/*CARD ANIMATIONS END -------------------------*/






.service-hub h2 {
    font-family: font3;
    text-align: center;
    padding: 15px 0px 15px 0px;
    color: #ed1d26;
    font-size: 25px;
}

.service-hub  p {
	font-family: Atlassian Sans; font-size: 17px; line-height: 35px; text-align: center; margin: 0px 35px 0px 35px; 
}

.service-hub a {
	color: inherit;
}

.service-hub mark {
    padding: 15px;
    text-align: center;
    font-family: font3;
    color: #fff;
    background: #000;
    display: none;
    font-weight: 500;
    position: absolute;
    width: 100%;
    font-size: 20px;
    bottom: 0;
}



.hvac-header {
             background: linear-gradient(to right, #ffffffd9, #ffffffd9), url(/img/services/hvac-services-01.jpg) no-repeat;
    background-size: cover;
    height: 100%; padding: 200px 50px 250px 250px;
    background-attachment: fixed;
    background-position: center center;
        }

        .hvac-header h1 {
            font-size: 2.5rem;
												text-align: center; text-transform: uppercase;
            font-family: font4;
            letter-spacing: 1px;
												line-height: 40px;
												color:  #0d5993;
        }

						   .hvac-header h1 strong {
            font-size: 25px;
												color: #dd0301; text-decoration: underline;
            font-family: font3;
            letter-spacing: 3px;
        }

        .hvac-header h1 span {
            font-size: 1.25rem;
            font-style: italic;
												font-family: font3; text-transform: capitalize;
            margin-top: 10px;
												color: #000;
        }
        .hvac-header h3 {
            font-size: 1.15rem;
												text-align: center; text-transform: uppercase;
            font-family: font4;
            letter-spacing: 1px;
												line-height: 30px;
												color:  #0d5993;
        }
								.hvac-header h4 {
									    padding: 15px;
    background: #000;
    color: #fff;
    font-family: monospace;
    border-radius: 6px;
    font-size: 15px;
    margin-top: -45px;
    width: 50%;
    text-align: center;
    margin-bottom: 30px;
    margin-left: 125px;
								}
									.hvac-header p {
										font-family: font3; font-size: 20px; line-height: 35px;
										text-align: center;
									}
        .hvac-services-legend {
            background: #0d5993;
            color: #fff;
            padding: 20px 20px 75px 20px;
            border-radius: 10px;
												border: 2px dotted #000;
            z-index: 1000;
        }


        .hvac-services-legend a {
            color: inherit; font-size: 35px; font-family: font3; text-align: center;
												
        }

        .hvac-services-legend a:hover {
            text-decoration: underline;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #0d5993;
            margin-bottom: 20px;
        }

         .hvac-overview {
               background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/black-grid-25.png);
    background-size: 15%;
    padding: 50px 0px 200px 0px;
    background-color: #fff;
    text-align: center;
        }
 .hvac-overview .container-fluid {
 padding: 0px;
 }
        .hvac-overview .row {
            margin-top: 20px;
        }
								 .hvac-overview h2 {
										font-family: font3; font-size: 45px; letter-spacing: 2px; color: #fff; padding: 65px; width: 75%; background: #000; text-align: center;
										margin-top: -90px;margin-bottom: 200px; margin-left: 75px;
										border-radius: 15px;
									}
									.hvac-overview h4 {
										font-family: 'font3';
    font-size: 35px;
    letter-spacing: 2px;
    padding: 15px;
    position: relative;
    margin-top: -100px;
    margin-bottom: 50px;
									}
									.hvac-overview p {
										font-family: font3; font-size: 1.25rem; line-height: 35px; letter-spacing: 1px;
									}
									.hvac-overview .box1 {
										padding: 15px;
									}
									.hvac-overview .box1 h3 {
										font-family: font3; font-size: 20px; letter-spacing: 2px;
									}
									.hvac-overview .box1 h3 i {
										color: #dd0301;
									}
        .hvac-service-card1, .hvac-service-card2, .hvac-service-card3, .hvac-service-card4 {
            background-size: cover;   overflow: hidden;
            background-repeat: no-repeat;
            height: 235px;
           /* border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            */
											margin: 15px;
            position: relative;
        }

        .hvac-service-card1 {
            background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/hvac-repair-01.jpeg) no-repeat;
												background-size: cover; padding-top: 15px;
        }
        .hvac-service-card2 {
            background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/hvac-replace-01.jpg) no-repeat;
												background-size: cover;
        }
        .hvac-service-card3 {
            background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/hvac-install-01.jpg) no-repeat;
												background-size: cover;
        }
        .hvac-service-card4 {
            background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/hvac-inspect-01.jpg) no-repeat;
												background-size: cover;
        }

        .hvac-service-card1 h3, .hvac-service-card2 h3, .hvac-service-card3 h3, .hvac-service-card4 h3 {
            font-family: font3;
            letter-spacing: 2px;
            color: #fff;
            font-size: 1.5rem;
            background: #0d5993;
            text-align: right;
            margin-left: -80px;
            margin-top: 35px;
            width: 50%;
            padding: 15px 10px 15px 0px;
            position: relative;
            transform: rotate(-35deg);
        }

        .hvac-service-card1:hover, .hvac-service-card2:hover, .hvac-service-card3:hover, .hvac-service-card4:hover {
            background: #0d5993; cursor: pointer; border-radius: 15px;
        }

        .hvac-service-card1:hover h3, .hvac-service-card2:hover h3, .hvac-service-card3:hover h3, .hvac-service-card4:hover h3 {
           transform: rotate(0deg);
    margin: 0px;
    font-size: 30px;
    width: 65%;
    background: #1E82C9;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 10px -7px 0px 0px #fff9;
        }

        .hvac-service-card1 p, .hvac-service-card2 p, .hvac-service-card3 p, .hvac-service-card4 p {
            color: #fff; text-align: center; display: none;  margin: 0px 15px 0px 15px;
            font-size: 1rem; font-family: font3; letter-spacing: 1px;
        }

        .hvac-service-card1:hover p, .hvac-service-card2:hover p, .hvac-service-card3:hover p, .hvac-service-card4:hover p {
            display: block; text-align: center; line-height: 20px; margin: -15px 50px 0px 50px;
        }

        .hvac-service-card1 i, .hvac-service-card2 i, .hvac-service-card3 i, .hvac-service-card4 i {
            font-size: 45px; display: none; margin: 5px 0px 5px 0px;
        }

        .hvac-service-card1:hover i, .hvac-service-card2:hover i, .hvac-service-card3:hover i, .hvac-service-card4:hover i {
            display: block; text-align: center; color: #fff;     margin-top: -50px;
    margin-left: -225px;
    margin-bottom: 25px;
        }

        .hvac-service-card1 .cta-button, .hvac-service-card2 .cta-button, .hvac-service-card3 .cta-button, .hvac-service-card4 .cta-button {
            display: none;
            background: #fff;
            color: #0d5993;
            border: 2px solid #0d5993;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 15px;
            font-family: font3;
            text-transform: uppercase;
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            text-decoration: none;
        }

        .hvac-service-card1:hover .cta-button, .hvac-service-card2:hover .cta-button, .hvac-service-card3:hover .cta-button, .hvac-service-card4:hover .cta-button {
            display: block;
        }
								
								.hvac-options {
									position: relative;background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%;
    background-attachment: fixed;
    background-color: #b0d0ff !important;
								}
								.hvac-options .container-fluid {
									padding: 0px;
								}
								.hvac-options .container {
									border: 5px solid #0d5993;	padding: 0px; border-top-right-radius: 100px;border-bottom-left-radius: 100px;
								}
								.hvac-options .row {
									    --bs-gutter-x: 0;
								}
								.hvac-options h2 {
									font-family: font2; font-size: 25px; letter-spacing: 1px; text-transform: uppercase; text-align: center;
								}
								.hvac-options p {
									font-family: font3; letter-spacing: 1px; font-size: 17px; line-height: 35px; text-align: center;
								}
								.hvac-options .residential-hvac {
									background: #f5f5f5; background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/red-grid-75.png);
    background-size: 15%; border-top-right-radius: 100px;
    background-attachment: fixed;
    background-color: #fff !important
								}
												.hvac-options .residential-hvac .residential-content {
									padding: 150px 50px 200px 50px;
								}
														.hvac-options .residential-hvac .residential-image {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/home-cooler-1.jpg) no-repeat;
    background-size: cover; border: 5px solid #dd0301; border-left: 0px; border-top: 0px; border-bottom-right-radius: 100px;
    height: 100%;
								}
								
										.hvac-options .residential-hvac .residential-image2 {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/commercial-cooling-01.jpg) no-repeat;
    background-size: cover; border: 5px solid #dd0301; border-left: 0px; border-top: 0px; border-bottom-right-radius: 100px;
    height: 100%;
								}
								
										.hvac-options .commercial-hvac {
									background: #f5f5f5;background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/red-grid-75.png);
    background-size: 15%;
    background-attachment: fixed;border-bottom-left-radius: 100px;
    background-color: #fff !important
								}
										.hvac-options .commercial-hvac .commercial-content {
									padding: 150px 50px 200px 50px; 
								}
														.hvac-options .commercial-hvac .commercial-image {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/home-heater-1.jpg) no-repeat;
    background-size: cover; border-top-left-radius: 100px;
    height: 100%; border: 5px solid #dd0301; border-right: 0px; border-bottom: 0px;
								}
								
									.hvac-options .commercial-hvac .commercial-image2 {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/commercial-heating-01.jpg) no-repeat;
    background-size: cover; border-top-left-radius: 100px;
    height: 100%; border: 5px solid #dd0301; border-right: 0px; border-bottom: 0px;
								}
								
								
														.hvac-options .residential-hvac .step1 {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/step1.JPG) no-repeat;
    background-size: cover; border: 5px solid #dd0301; border-left: 0px; border-top: 0px; border-bottom-right-radius: 100px;
    height: 100%;
				background-position: 50% 50%;
								}
														.hvac-options .commercial-hvac .step2 {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/step2.jpg) no-repeat;
    background-size: cover; border-top-left-radius: 100px;
    height: 100%; border: 5px solid #dd0301; border-right: 0px; border-bottom: 0px;
				background-position: 50% 50%;

								}
														.hvac-options .residential-hvac .step3 {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/step3.jpg) no-repeat;
    background-size: cover; border: 5px solid #dd0301; border-left: 0px; border-top: 0px; border-bottom-right-radius: 100px;
    height: 100%;
				background-position: 50% 50%;

								}
														.hvac-options .commercial-hvac .step4 {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/step4.jpg) no-repeat;
    background-size: cover; border-top-left-radius: 100px;
    height: 100%; border: 5px solid #dd0301; border-right: 0px; border-bottom: 0px;
				background-position: 50% 50%;

								}
														.hvac-options .residential-hvac .step5 {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/step5.jpg) no-repeat;
    background-size: cover; border: 5px solid #dd0301; border-left: 0px; border-top: 0px; border-bottom-right-radius: 100px;
    height: 100%;
				background-position: 50% 50%;

								}
														.hvac-options .commercial-hvac .step6 {
									    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/step6.jpg) no-repeat;
    background-size: cover; border-top-left-radius: 100px;
    height: 100%; border: 5px solid #dd0301; border-right: 0px; border-bottom: 0px;
				background-position: 50% 50%;

								}
								
								
/*Commercial HVAC Value Section*/
.commercial-hvac-value {
	background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
	background-size: 15%;
	background-attachment: fixed;
	background-color: #b0d0ff !important;
	padding: 125px 0px 125px 0px;
	position: relative;
}

.commercial-hvac-value .value-heading {
	text-align: center;
	margin-bottom: 65px;
}

.commercial-hvac-value .value-heading h2 {
	font-family: font3;
	font-size: 45px;
	letter-spacing: 2px;
	color: #fff;
	background: #000;
	padding: 45px 35px;
	width: 80%;
	margin: 0 auto 35px auto;
	border-radius: 15px;
}

.commercial-hvac-value .value-heading p {
	font-family: font3;
	font-size: 1.25rem;
	line-height: 35px;
	letter-spacing: 1px;
	color: #000;
	width: 85%;
	margin: 0 auto;
	text-align: center;
}

.commercial-hvac-value .value-card {
	background: #fff;
	border: 5px solid #0d5993;
	border-top-right-radius: 45px;
	border-bottom-left-radius: 45px;
	padding: 35px 25px;
	height: 100%;
	margin-bottom: 30px;
	box-shadow: 10px 10px 0px 0px #dd0301;
	transition: 250ms ease;
	text-align: center;
}

.commercial-hvac-value .value-card:hover {
	background: #0d5993;
	border-color: #dd0301;
	box-shadow: 10px 10px 0px 0px #000;
	transform: translateY(-5px);
}

.commercial-hvac-value .value-card h3 {
	font-family: font3;
	font-size: 25px;
	letter-spacing: 2px;
	color: #0d5993;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.commercial-hvac-value .value-card:hover h3 {
	color: #fff;
}

.commercial-hvac-value .value-card p {
	font-family: font3;
	font-size: 17px;
	line-height: 31px;
	letter-spacing: 1px;
	color: #000;
	text-align: center;
	margin-bottom: 0px;
}

.commercial-hvac-value .value-card:hover p {
	color: #fff;
}

.commercial-hvac-value .value-row-two {
	margin-top: 25px;
}


/*Commercial HVAC Technology Section*/
.commercial-hvac-tech {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/black-grid-25.png);
	background-size: 15%;
	background-color: #fff;
	padding: 125px 0px 125px 0px;
}

.commercial-hvac-tech .tech-content {
	padding: 45px;
	background: #fff;
	border-left: 8px solid #dd0301;
	box-shadow: 0px 0px 35px 0px rgba(68, 88, 144, 0.18);
}

.commercial-hvac-tech .tech-content h2 {
	font-family: font3;
	font-size: 40px;
	letter-spacing: 2px;
	color: #0d5993;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.commercial-hvac-tech .tech-content p {
	font-family: font3;
	font-size: 1.15rem;
	line-height: 35px;
	letter-spacing: 1px;
	color: #000;
}

.commercial-hvac-tech .tech-list {
	background: #0d5993;
	color: #fff;
	padding: 45px 35px;
	border-radius: 15px;
	border: 2px dotted #000;
	box-shadow: 12px 12px 0px 0px #dd0301;
	height: 100%;
}

.commercial-hvac-tech .tech-list h3 {
	font-family: font3;
	font-size: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}

.commercial-hvac-tech .tech-list p {
	font-family: font3;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 1px;
	color: #fff;
	background: rgba(255,255,255,0.12);
	border-left: 5px solid #dd0301;
	padding: 12px 15px;
	margin-bottom: 14px;
}


/*Commercial HVAC Cost Section*/
.commercial-hvac-cost {
	background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/red-grid-75.png);
	background-size: 15%;
	background-attachment: fixed;
	background-color: #fff !important;
	padding: 125px 0px 125px 0px;
}

.commercial-hvac-cost .cost-heading {
	text-align: center;
	margin-bottom: 60px;
}

.commercial-hvac-cost .cost-heading h2 {
	font-family: font3;
	font-size: 42px;
	letter-spacing: 2px;
	color: #fff;
	background: #0d5993;
	padding: 45px 35px;
	width: 80%;
	margin: 0 auto 35px auto;
	border-radius: 15px;
	box-shadow: 10px 10px 0px 0px #000;
}

.commercial-hvac-cost .cost-heading p {
	font-family: font3;
	font-size: 1.25rem;
	line-height: 35px;
	letter-spacing: 1px;
	color: #000;
	width: 85%;
	margin: 0 auto;
	text-align: center;
}

.commercial-hvac-cost .cost-card {
	background: #fff;
	border: 4px solid #0d5993;
	padding: 32px 25px;
	height: 100%;
	margin-bottom: 30px;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	transition: 250ms ease;
}

.commercial-hvac-cost .cost-card:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 9px;
	background: #dd0301;
}

.commercial-hvac-cost .cost-card:hover {
	background: #000;
	border-color: #dd0301;
	transform: translateY(-5px);
}

.commercial-hvac-cost .cost-card h3 {
	font-family: font3;
	font-size: 24px;
	letter-spacing: 2px;
	color: #0d5993;
	text-transform: uppercase;
	margin-bottom: 16px;
	text-align: center;
}

.commercial-hvac-cost .cost-card:hover h3 {
	color: #fff;
}

.commercial-hvac-cost .cost-card p {
	font-family: font3;
	font-size: 17px;
	line-height: 31px;
	letter-spacing: 1px;
	color: #000;
	text-align: center;
	margin-bottom: 0px;
}

.commercial-hvac-cost .cost-card:hover p {
	color: #fff;
}

.commercial-hvac-cost .cost-row-two {
	margin-top: 25px;
}


/*Commercial HVAC FAQ Section*/
.commercial-hvac-faq {
	background: #fff;
	padding: 110px 0px 110px 0px;
}

.commercial-hvac-faq h2 {
	font-family: font3;
	font-size: 45px;
	letter-spacing: 2px;
	color: #fff;
	background: #000;
	padding: 45px 35px;
	width: 80%;
	margin: 0 auto 25px auto;
	border-radius: 15px;
	text-align: center;
}

.commercial-hvac-faq .faq-intro {
	font-family: font3;
	font-size: 1.25rem;
	line-height: 35px;
	letter-spacing: 1px;
	color: #000;
	width: 80%;
	margin: 0 auto 45px auto;
	text-align: center;
}

.commercial-hvac-faq .box {
	width: 90%;
	margin: 0 auto;
}

.commercial-hvac-faq .bg-dark {
	background-color: #0d5993 !important;
}

.commercial-hvac-faq .bg-dark:hover {
	background-color: #000 !important;
}

.commercial-hvac-faq .header,
.commercial-hvac-faq .header_2,
.commercial-hvac-faq .header_3,
.commercial-hvac-faq .header_4,
.commercial-hvac-faq .header_5,
.commercial-hvac-faq .header_6,
.commercial-hvac-faq .header_7,
.commercial-hvac-faq .header_8,
.commercial-hvac-faq .header_9,
.commercial-hvac-faq .header_10 {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: capitalize;
	margin: 18px 0 0;
	border-radius: 10px;
	font-family: font3;
	font-size: 18px;
	letter-spacing: 1px;
	border-left: 8px solid #dd0301;
}

.commercial-hvac-faq .content,
.commercial-hvac-faq .content_2,
.commercial-hvac-faq .content_3,
.commercial-hvac-faq .content_4,
.commercial-hvac-faq .content_5,
.commercial-hvac-faq .content_6,
.commercial-hvac-faq .content_7,
.commercial-hvac-faq .content_8,
.commercial-hvac-faq .content_9,
.commercial-hvac-faq .content_10 {
	overflow: hidden;
	max-height: 0px;
	transition: 300ms ease-in;
	background: #fff;
	border: 0px solid black !important;
}

.commercial-hvac-faq .content p,
.commercial-hvac-faq .content_2 p,
.commercial-hvac-faq .content_3 p,
.commercial-hvac-faq .content_4 p,
.commercial-hvac-faq .content_5 p,
.commercial-hvac-faq .content_6 p,
.commercial-hvac-faq .content_7 p,
.commercial-hvac-faq .content_8 p,
.commercial-hvac-faq .content_9 p,
.commercial-hvac-faq .content_10 p {
	font-family: font3;
	font-size: 17px;
	line-height: 31px;
	letter-spacing: 1px;
	color: #000;
	background: #f5f5f5;
	border-left: 8px solid #0d5993;
	margin-bottom: 0px;
}

.commercial-hvac-faq span {
	transition: 200ms;
	font-weight: 600;
	font-size: 1.1rem;
}


/*Responsive Adjustments*/
@media only screen and (max-width: 1199px) {
	.commercial-hvac-value .value-heading h2,
	.commercial-hvac-cost .cost-heading h2,
	.commercial-hvac-faq h2 {
		width: 95%;
	}

	.commercial-hvac-value .value-heading p,
	.commercial-hvac-cost .cost-heading p,
	.commercial-hvac-faq .faq-intro {
		width: 95%;
	}
}

@media only screen and (max-width: 991px) {
	.commercial-hvac-value,
	.commercial-hvac-tech,
	.commercial-hvac-cost,
	.commercial-hvac-faq {
		padding: 85px 0px;
	}

	.commercial-hvac-value .value-heading h2,
	.commercial-hvac-cost .cost-heading h2,
	.commercial-hvac-faq h2 {
		font-size: 34px;
		padding: 35px 22px;
	}

	.commercial-hvac-tech .tech-content {
		margin-bottom: 35px;
	}

	.commercial-hvac-tech .tech-content h2 {
		font-size: 32px;
	}

	.commercial-hvac-value .value-card,
	.commercial-hvac-cost .cost-card {
		margin-bottom: 35px;
	}

	.commercial-hvac-faq .box {
		width: 100%;
	}
}

@media only screen and (max-width: 575px) {
	.commercial-hvac-value .value-heading h2,
	.commercial-hvac-cost .cost-heading h2,
	.commercial-hvac-faq h2 {
		font-size: 28px;
	}

	.commercial-hvac-value .value-heading p,
	.commercial-hvac-cost .cost-heading p,
	.commercial-hvac-faq .faq-intro,
	.commercial-hvac-tech .tech-content p,
	.commercial-hvac-tech .tech-list p,
	.commercial-hvac-value .value-card p,
	.commercial-hvac-cost .cost-card p {
		font-size: 16px;
		line-height: 29px;
	}

	.commercial-hvac-tech .tech-content,
	.commercial-hvac-tech .tech-list {
		padding: 32px 22px;
	}

	.commercial-hvac-faq .header,
	.commercial-hvac-faq .header_2,
	.commercial-hvac-faq .header_3,
	.commercial-hvac-faq .header_4,
	.commercial-hvac-faq .header_5,
	.commercial-hvac-faq .header_6,
	.commercial-hvac-faq .header_7,
	.commercial-hvac-faq .header_8,
	.commercial-hvac-faq .header_9,
	.commercial-hvac-faq .header_10 {
		font-size: 15px;
		line-height: 24px;
	}
}
								
        .expertise-section {
									
            padding: 125px 50px 0px 50px ; height: 500px;
            background: #d2d3f4;
        }

        .expertise-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
        }

        .expertise-item {
            background: #797acc;
           color: #fff;
            height: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 320px;
            
        }
									.expertise-item:hover {
										background: #fff; color: #797acc; border-radius: 15px; 
									}
        .expertise-item img {
            width: 45%;;margin-top: -90px;  /*background: #d2d3f4*/; border-top-right-radius: 15px; border-top-left-radius: 15px;
        }
							.expertise-item:hover img {
								display: block;  /*background: #fff;*/ 
							}
							.expertise-item:hover p {
								color: #000; font-weight: 600;
							}
        .expertise-item h3 {
           font-family: font3; letter-spacing: 2px;
            margin: 15px 0;text-align: center;
            font-size: 1.45rem;
        }
								.expertise-item h4 {
									font-size: 18px; font-family: font2; letter-spacing: 1px; margin-left: 60px; display: none;
								}
								.expertise-item:hover h4 {
									display: block;
								}
        .expertise-item p {
            padding: 0 15px 15px; font-family: font2; letter-spacing: 1px;text-align: center; font-size: 1.2rem;
        }

        .details-section {
               padding: 150px 20px;
    background: linear-gradient(to right, #ffffffad, #ffffffad), url(/img/services/hartford-ct.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
            
        }

								.details-section h2 {
									    font-family: font3;
    letter-spacing: 2px;
    font-size: 40px;
    color: #000;
    font-weight: 600;
    line-height: 65px;
								}
								
								.details-section .bubble-container{
									padding: 10px;
									background: white;
									
									border-radius: 30px; 
									border: 3px solid black; 
									
								}
								.details-section h2 span {
									font-size: 20px; color: #0d5993;
								}
								.details-section p {
									    font-family: font3;
    letter-spacing: 2px;
    font-size: 1rem;
    color: #000;
    font-weight: 400;
    line-height: 40px;
								}
								.details-section h3 {
									font-family: font4; letter-spacing: 2px; font-size: 25px; padding: 15px ; color: #000; width: fit-content;
								}
								
								.details-section h3 span {
									color: #0d5993; text-shadow: 1px 1px 1px #000;
								}
								.details-section h3:hover {
									    background: #0d599373;;
    font-weight: 600;
    color: #fff;
				border-radius: 10px;
    text-shadow: 1px 1px 1px #000;
								}
        .details-section i {
            color: #797acc;
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .company-info {
            background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%;
    background-attachment: fixed;
    background-color: #fff !important;
            color: #0d5993;
            padding: 50px 50px 100px 50px;
        }

        .company-info h2 {
            font-family: font4; letter-spacing: 0px; font-size: 35px; line-height: 45px; 
        }
								.company-info h2 span {
									font-size: 20px; font-family: font4;
								}
								.company-info h3 {
									font-family: font2; letter-spacing: 2px; color: #0d5993; font-size: 20px; font-weight: 600; padding: 10px 0px 10px 0px;
								}
								.company-info h3 span {
									font-weight: 500;
								}
								.company-info h3:hover {
									background: #0d5993; color: #fff; font-style: italic; text-align: center;
								}
								.company-info h4 {
									    font-family: font4;
    font-size: 25px;
    font-style: italic;
    letter-spacing: 3px;
    margin-left: 180px;
    line-height: 48px;
    margin-right: -100px;
								}
        .company-info p {
         font-family: font3; line-height: 35px; font-size: 1.25rem; margin-left: 50px;
        }
								.company-info mark {
									padding: 25px; border-radius: 15px; font-size: 20px; font-family: font2; letter-spacing: 2px; text-transform: uppercase;
									background: #0d5993; color: #fff;  position: relative; left:-25%;
								}
								.company-info mark:hover {
									box-shadow: 1px 1px 10px 1px #000;
								}



/*DUCTLESS AC START*/


.ductless-ac-intro {
	padding: 250px 0px 250px 0px;
	    background: linear-gradient(to right, #ffffff66, #ffffff66), url(/img/services/ductless-ac-01.jpg) no-repeat;
    background-size: cover; background-position: center center;
    height: 100%;
}

.ductless-ac-intro  h1 {
	font-family: font2; letter-spacing: 2px; font-size: 30px; text-align: center;
}

.ductless-ac-intro  h1 strong {
	font-size: 60px; color: #0d5993; font-weight: 500; text-shadow: 2px 1px 1px #fff;	font-family: font4;
}

.ductless-ac-intro  h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #fff;  line-height: 40px;    padding: 10px 5px 10px 5px;

}

.ductless-ac-intro  h3:hover {
	    background: #fff;
    color: #0d5993; text-indent: 15px;
    box-shadow: 1px 1px 5px 1px #000;
    border-radius: 5px;
}
.ductless-ac-intro  p {
	font-family: font3; font-size: 1.25rem; line-height: 35px;
	text-align: center; font-weight: 500; letter-spacing: 1px;
}
.ductless-ac-intro .intro-legend {
	padding: 25px; background: #0d5993; margin-left: 50px;
     border-radius: 15px; margin-top: 50px; margin-right: -50px;
}

.ductless-ac-benefit-main {
    background: #fff;
    padding: 100px 50px 250px 0px;
}
.ductless-ac-benefit-main .container-fluid {
	padding: 0px;
}
.ductless-ac-benefits-section {
    background-color: #fff;
    padding: 50px 20px; margin-top: 50px;
}
.ductless-ac-benefit-main .benefit-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/3d-ductless-ac.png) no-repeat;
    background-size: 75%; background-color: #fff; padding: 0px 0px 100px 0px;
    height: 600px; border-radius: 100%; position: relative; background-position: center center;
}
.ductless-ac-benefit-main h2 {
    font-size: 45px;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
				padding-bottom: 50px; margin-left: 100px;
}
.ductless-ac-benefit-main h2 span {
	color: #0d5993; font-size: 65px;
}
.ductless-ac-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.ductless-ac-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.ductless-ac-tab-button {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    background: #0d5993;
    color: #fff;
    font-size: 1.2rem;
    font-family: font3;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
}

.ductless-ac-tab-button:not(:last-child) {
    border-right: 1px solid #fff;
}

.ductless-ac-tab-button:hover {
    background: #0A3C60;
}

.ductless-ac-tab-button.active {
    background: #2895E2;
    font-weight: bold;
				color: #000;
}

.ductless-ac-tab-contents {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ductless-ac-tab-content {
    display: none;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.ductless-ac-tab-content.active {
    display: block;
}

.ductless-ac-tab-content p {
	font-family: font2; font-size: 1.2rem; line-height: 35px; font-weight: 500; letter-spacing: 1px;
}

.ductless-ac-tab-content ul {
    margin: 15px 0 0 20px;
    list-style: disc;
}

.ductless-ac-tab-content li {
    margin-bottom: 5px;
    font-size: 1.25rem; font-family: font3; letter-spacing: 1px;
    color: #555;
}

.service-splitter {
	background: #0d5993; color: #fff;
}

.service-splitter h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 50px;
    text-align: center;
    padding: 100px;
    background: #0d5993;
    margin-top: -100px;
    margin-bottom: -100px;
    border-radius: 25px;
}

.ductless-ac-services {
	    background: linear-gradient(to right, #ffffff8f, #ffffff8f), url(/img/homepage/blue-grid-25.png) no-repeat;
    background-size: 15%; background-attachment: fixed;
    background-position: top;
       padding: 275px 0px 200px 0px;
    text-align: center;
    background-repeat: repeat;
}
.ductless-ac-services .services-card1 {
	padding: 0px 0px 50px 0px; background: #98CCF2; color: #0d5993;
}
.ductless-ac-services .services-card1:hover {
 box-shadow: 0px 0px 0px 5px #0d5993; 
}
.ductless-ac-services h2 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; text-align: left; margin-left: 25px; margin-top: 15px;
}
.ductless-ac-services h2 span {
	font-size: 25px; font-family: font4;
}
.ductless-ac-services p {
	margin: 0px 25px 0px 25px; font-family: font3; letter-spacing: 1px; font-size: 1.25rem; line-height: 30px;margin-top: 25px;
}

.ductless-ac-services i {
    font-size: 50px;
    color: #0d5993;
    background: #98CCF2;
    padding: 20px; position: relative;
}
.ductless-ac-services .services-card1:hover i {
	background: #0d5993;box-shadow: -1px 0px 0px 0px #0d5993; color: #fff;
}
.ductless-ac-services hr {
    height: 5px;
    opacity: 100%;
    background: #98CCF2; 
    width: 109.5%;
    margin-left: -29px;
}
.ductless-ac-services .services-card1:hover hr {
 background: #0d5993;
}

.ductless-ac-choose-berkshire {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/ac-lady.jpg) no-repeat;
    background-size: contain; background-position: center;
    height: 100%; padding: 150px 100px 150px 100px; 
}
.ductless-ac-choose-berkshire .container {
	border: 3px solid #0d5993;
}
.ductless-ac-choose-berkshire .choose-intro {
padding: 75px; background: #0d5993;    border-radius: 35px;margin-left: 50px;
    margin-right: -50px;
}
.ductless-ac-choose-berkshire .choose-reasons {
      text-align: center;
    position: relative;
    left: -5%;
    top: 0%;
    padding: 35px 25px 25px 25px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: 155px;

}

.ductless-ac-choose-berkshire .choose-reasons:hover {
	background: #0d5993; color: #fff;
}
.ductless-ac-choose-berkshire .choose-reasons:hover a {
	color: #fff;
}
.ductless-ac-choose-berkshire h2 {
	font-family: font2; font-size: 30px; color: #fff; font-weight:500;
}

.ductless-ac-choose-berkshire h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #000; text-align: left; padding: 15px; margin-top: 45px;
}
.ductless-ac-choose-berkshire h4 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 18px;
    margin-left: -10px;
    margin-right: -10px;
    line-height: 30px;
}
.ductless-ac-choose-berkshire p {
	font-family: font3; letter-spacing: 1px; line-height: 35px; font-size: 1.25rem; color: #fff;
}
.ductless-ac-choose-berkshire i {
	font-size: 45px;
}
.ductless-ac-choose-berkshire a {
	color: inherit;
}


/*DUCTLESS AC END*/


/*REFRIGERATION START*/


.refrigeration-intro {
	padding: 250px 0px 250px 0px;
	    background: linear-gradient(to right, #ffffff66, #ffffff66), url(/img/services/refrigeration-01.jpg) no-repeat;
    background-size: cover; background-position: center center;
    height: 100%;
}

.refrigeration-intro  h1 {
	font-family: font2; letter-spacing: 2px; font-size: 30px; text-align: center;
}

.refrigeration-intro  h1 strong {
	font-size: 60px; color: #0d5993; font-weight: 500; text-shadow: 2px 1px 1px #fff;	font-family: font4;
}

.refrigeration-intro  h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #fff;  line-height: 40px;    padding: 10px 5px 10px 5px;

}

.refrigeration-intro  h3:hover {
	    background: #fff;
    color: #0d5993; text-indent: 15px;
    box-shadow: 1px 1px 5px 1px #000;
    border-radius: 5px;
}
.refrigeration-intro  p {
	font-family: font3; font-size: 1.25rem; line-height: 35px;
	text-align: center; font-weight: 500; letter-spacing: 1px;
}
.refrigeration-intro .intro-legend {
	padding: 25px; background: #0d5993; margin-left: 50px;
     border-radius: 15px; margin-top: 50px; margin-right: -50px;
}

.refrigeration-benefit-main {
    background: #fff;
    padding: 100px 50px 250px 0px;
}
.refrigeration-benefit-main .container-fluid {
	padding: 0px;
}
.refrigeration-benefits-section {
    background-color: #fff;
    padding: 50px 20px; margin-top: 50px;
}
.refrigeration-benefit-main .benefit-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/3d-refrigeration.png) no-repeat;
    background-size: 75%; background-color: #fff; padding: 0px 0px 100px 0px;
    height: 600px; border-radius: 100%; position: relative; background-position: center center;
}
.refrigeration-benefit-main h2 {
    font-size: 45px;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
				padding-bottom: 50px; margin-left: 100px;
}
.refrigeration-benefit-main h2 span {
	color: #0d5993; font-size: 65px;
}


.refrigeration-benefit-main h4.cta {
    padding: 22px;
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    width: fit-content;
    background: #0d5993;
    text-align: center;
    font-family: font3;
    font-weight: 600;
    text-transform: uppercase;
}


.refrigeration-tabs {
    max-width: 1100px;
    margin: 0 auto;
}

.refrigeration-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.refrigeration-tab-button {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    background: #0d5993;
    color: #fff;
    font-size: 1.2rem;
    font-family: font3;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
}

.refrigeration-tab-button:not(:last-child) {
    border-right: 1px solid #fff;
}

.refrigeration-tab-button:hover {
    background: #0A3C60;
}

.refrigeration-tab-button.active {
    background: #2895E2;
    font-weight: bold;
				color: #000;
}

.refrigeration-tab-contents {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.refrigeration-tab-content {
    display: none;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.refrigeration-tab-content.active {
    display: block;
}

.refrigeration-tab-content p {
	font-family: font2; font-size: 1rem; line-height: 35px; font-weight: 500; letter-spacing: 1px;
}

.refrigeration-tab-content ul {
    margin: 15px 0 0 20px;
    list-style: disc;
}

.refrigeration-tab-content li {
    margin-bottom: 5px;
    font-size: 1.25rem; font-family: font3; letter-spacing: 1px;
    color: #555;
}

.service-splitter {
	background: #0d5993; color: #fff;
}

.service-splitter h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 50px;
    text-align: center;
    padding: 100px;
    background: #0d5993;
    margin-top: -100px;
    margin-bottom: -100px;
    border-radius: 25px;
}

.refrigeration-services {
	    background: linear-gradient(to right, #ffffff8f, #ffffff8f), url(/img/homepage/blue-grid-25.png) no-repeat;
    background-size: 15%; background-attachment: fixed;
    background-position: top;
       padding: 275px 0px 200px 0px;
    text-align: center;
    background-repeat: repeat;
}
.refrigeration-services .services-card1 {
	padding: 0px 0px 50px 0px; background: #98CCF2; color: #0d5993;
}
.refrigeration-services .services-card1:hover {
 box-shadow: 0px 0px 0px 5px #0d5993; 
}
.refrigeration-services h2 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; text-align: left; margin-left: 25px; margin-top: 15px;
}
.refrigeration-services h2 span {
	font-size: 25px; font-family: font4;
}
.refrigeration-services p {
	margin: 0px 25px 0px 25px; font-family: font3; letter-spacing: 1px; font-size: 1.25rem; line-height: 30px;margin-top: 25px;
}

.refrigeration-services i {
    font-size: 50px;
    color: #0d5993;
    background: #98CCF2;
    padding: 20px; position: relative;
}
.refrigeration-services .services-card1:hover i {
	background: #0d5993;box-shadow: -1px 0px 0px 0px #0d5993; color: #fff;
}
.refrigeration-services hr {
    height: 5px;
    opacity: 100%;
    background: #98CCF2; 
    width: 109.5%;
    margin-left: -29px;
}
.refrigeration-services .services-card1:hover hr {
 background: #0d5993;
}

.refrigeration-choose-berkshire  {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/refrigeration-man.jpg) no-repeat;
    background-size: contain; background-position: center;
    height: 100%; padding: 150px 100px 150px 100px; 
}
.refrigeration-choose-berkshire  .container {
	border: 3px solid #0d5993;
}
.refrigeration-choose-berkshire  .choose-intro {
padding: 75px; background: #0d5993;    border-radius: 5px;margin-left: 50px;
    margin-right: -50px;
}
.refrigeration-choose-berkshire  .choose-reasons {
      text-align: center;
    position: relative;
    left: -5%;
    top: 0%;
    padding: 35px 25px 25px 25px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: 155px;

}

.refrigeration-choose-berkshire .choose-reasons:hover {
	background: #0d5993; color: #fff;
}
.refrigeration-choose-berkshire .choose-reasons:hover a {
	color: #fff;
}
.refrigeration-choose-berkshire h2 {
	font-family: font2; font-size: 30px; color: #fff; font-weight:500;
}

.refrigeration-choose-berkshire h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #fff; text-align: left; padding: 15px; margin-top: 45px;
}
.refrigeration-choose-berkshire h4 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 18px;
    margin-left: -10px;
    margin-right: -10px;
    line-height: 30px;
}
.refrigeration-choose-berkshire p {
	font-family: font3; letter-spacing: 1px; line-height: 35px; font-size: 1.25rem; color: #fff;
}
.refrigeration-choose-berkshire i {
	font-size: 45px;
}
.refrigeration-choose-berkshire a {
	color: inherit;
}





.refrigeration-faq{
	
}

.refrigeration-faq {
	padding: 75px 0 75px 0;
	background: #98CCF2;
}
.refrigeration-faq h1 {
	font-size: 2.7rem;
	font-weight: 800;
	padding-bottom: 15px;
	color: rgb(10,98,185);
	text-align: center;
	
	
}
.refrigeration-faq h2 {
	font-size: 2rem;
	font-weight: 800;
	padding-bottom: 5px;
	color: black; 
	text-align: center;
	font-family: font2; 
}
.refrigeration-faq .box{
  width: auto;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.refrigeration-faq span{
  transition: 200ms;
  font-weight: 600;
  font-size: 1.1rem;
}
.refrigeration-faq .bg-dark {
  background-color: rgb(190,160,71); !important;
}
.refrigeration-faq .bg-dark:hover {
  background-color:rgb(190,160,71); !important;
}
.refrigeration-faq .content, .refrigeration-faq .content_2, .refrigeration-faq .content_3, .refrigeration-faq .content_4, .refrigeration-faq .content_5,
.refrigeration-faq .content_6, .refrigeration-faq .content_7, .refrigeration-faq .content_8, .refrigeration-faq .content_9, .refrigeration-faq .content_10, .refrigeration-faq .content_11, .refrigeration-faq .content_12 {
    overflow: hidden;
    max-height: 0px;
    transition: 300ms ease-in;
    background: white;
    border: none !important;
    border-radius: 14px;
}


.refrigeration-faq .header, .refrigeration-faq .header_2, .refrigeration-faq .header_3, .refrigeration-faq .header_4, .refrigeration-faq .header_5, .refrigeration-faq .header_6, .refrigeration-faq .header_7, .refrigeration-faq .header_8, .refrigeration-faq .header_9, .refrigeration-faq .header_10, .refrigeration-faq .header_11, .refrigeration-faq .header_12 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
    background: #0d5993;
    color: white;
    border-radius: 14px;
				    font-weight: 600;
}
/*FAQ Refrigeration END*/



/*REFRIGERATION END*/



/*AC SERVICES START*/


.ac-intro {
	padding: 250px 0px 250px 0px;
	    background: linear-gradient(to right, #ffffff66, #ffffff66), url(/img/services/ac-01.jpg) no-repeat;
    background-size: cover; background-position: center center;
    height: 100%;
}

.ac-intro  h1 {
	font-family: font2; letter-spacing: 2px; font-size: 30px; text-align: center;
}

.ac-intro  h1 strong {
	font-size: 60px; color: #0d5993; font-weight: 500; text-shadow: 2px 1px 1px #fff;	font-family: font4;
}

.ac-intro  h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #fff;  line-height: 40px;    padding: 10px 5px 10px 5px;

}

.ac-intro  h3:hover {
	    background: #fff;
    color: #0d5993; text-indent: 15px;
    box-shadow: 1px 1px 5px 1px #000;
    border-radius: 5px;
}
.ac-intro  p {
	font-family: font3; font-size: 1.25rem; line-height: 35px;
	text-align: center; font-weight: 800; letter-spacing: 1px;
	    text-shadow: 1px 1px black;
}
.ac-intro .intro-legend {
	padding: 25px; background: #0d5993; margin-left: 50px;
     border-radius: 15px; margin-top: 50px; margin-right: -50px;
}

.ac-benefit-main {
    background: #fff;
    padding: 100px 50px 250px 0px;
}
.ac-benefit-main .container-fluid {
	padding: 0px;
}
.ac-benefits-section {
    background-color: #fff;
    padding: 50px 20px; margin-top: 50px;
}
.ac-benefit-main .benefit-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/3d-ac.png) no-repeat;
    background-size: 75%; background-color: #fff; padding: 0px 0px 100px 0px;
    height: 600px; border-radius: 100%; position: relative; background-position: center center;
}
.ac-benefit-main h2 {
    font-size: 45px;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
				padding-bottom: 50px; margin-left: 100px;
}
.ac-benefit-main h2 span {
	color: #0d5993; font-size: 65px;
}
.ac-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.ac-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.ac-tab-button {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    background: #0d5993;
    color: #fff;
    font-size: 1.2rem;
    font-family: font3;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
}

.ac-tab-button:not(:last-child) {
    border-right: 1px solid #fff;
}

.ac-tab-button:hover {
    background: #0A3C60;
}

.ac-tab-button.active {
    background: #2895E2;
    font-weight: bold;
				color: #000;
}

.ac-tab-contents {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ac-tab-content {
    display: none;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.ac-tab-content.active {
    display: block;
}

.ac-tab-content p {
	font-family: font2; font-size: 1.2rem; line-height: 35px; font-weight: 500; letter-spacing: 1px;
}

.ac-tab-content ul {
    margin: 15px 0 0 20px;
    list-style: disc;
}

.ac-tab-content li {
    margin-bottom: 5px;
    font-size: 1.25rem; font-family: font3; letter-spacing: 1px;
    color: #555;
}

.service-splitter {
	background: #0d5993; color: #fff;
}

.service-splitter h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 50px;
    text-align: center;
    padding: 100px;
    background: #0d5993;
    margin-top: -100px;
    margin-bottom: -100px;
    border-radius: 25px;
}

.ac-services {
	    background: linear-gradient(to right, #ffffff8f, #ffffff8f), url(/img/homepage/blue-grid-25.png) no-repeat;
    background-size: 15%; background-attachment: fixed;
    background-position: top;
       padding: 275px 0px 200px 0px;
    text-align: center;
    background-repeat: repeat;
}
.ac-services .services-card1 {
	padding: 0px 0px 50px 0px; background: #98CCF2; color: #0d5993;
}
.ac-services .services-card1:hover {
 box-shadow: 0px 0px 0px 5px #0d5993; 
}
.ac-services h2 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; text-align: left; margin-left: 25px; margin-top: 15px;
}
.ac-services h2 span {
	font-size: 25px; font-family: font4;
}
.ac-services p {
	margin: 0px 25px 0px 25px; font-family: font3; letter-spacing: 1px; font-size: 1.25rem; line-height: 30px;margin-top: 25px;
}

.ac-services i {
    font-size: 50px;
    color: #0d5993;
    background: #98CCF2;
    padding: 20px; position: relative;
}
.ac-services .services-card1:hover i {
	background: #0d5993;box-shadow: -1px 0px 0px 0px #0d5993; color: #fff;
}
.ac-services hr {
    height: 5px;
    opacity: 100%;
    background: #98CCF2; 
    width: 109.5%;
    margin-left: -29px;
}
.ac-services .services-card1:hover hr {
 background: #0d5993;
}

.ac-choose-berkshire  {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/ac-call.jpg) no-repeat;
    background-size: contain; background-position: center;
    height: 100%; padding: 150px 100px 150px 100px; 
}
.ac-choose-berkshire  .container {
	border: 3px solid #0d5993;
}
.ac-choose-berkshire  .choose-intro {
padding: 75px; background: #0d5993;    border-radius: 5px;margin-left: 50px;
    margin-right: -50px;
}
.ac-choose-berkshire  .choose-reasons {
      text-align: center;
    position: relative;
    left: -5%;
    top: 0%;
    padding: 35px 25px 25px 25px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: 155px;

}

.ac-choose-berkshire .choose-reasons:hover {
	background: #0d5993; color: #fff;
}
.ac-choose-berkshire .choose-reasons:hover a {
	color: #fff;
}
.ac-choose-berkshire h2 {
	font-family: font2; font-size: 30px; color: #fff; font-weight:500;
}

.ac-choose-berkshire h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #000; text-align: left; padding: 15px; margin-top: 45px;
}
.ac-choose-berkshire h4 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 18px;
    margin-left: -10px;
    margin-right: -10px;
    line-height: 30px;
}
.ac-choose-berkshire p {
	font-family: font3; letter-spacing: 1px; line-height: 35px; font-size: 1.25rem; color: #fff;
}
.ac-choose-berkshire i {
	font-size: 45px;
}
.ac-choose-berkshire a {
	color: inherit;
}


/*AC SERVICES END*/


/*	MAINTENANCE START*/
	
	
	.maintenance-intro {
	padding: 250px 0px 250px 0px;
	    background: linear-gradient(to right, #ffffff66, #ffffff66), url(/img/services/ac-maintenance-01.jpg) no-repeat;
    background-size: cover; background-position: center center;
    height: 100%;
}

.maintenance-intro  h1 {
	font-family: font2; letter-spacing: 2px; font-size: 30px; text-align: center;
}

.maintenance-intro  h1 strong {
	font-size: 60px; color: #0d5993; font-weight: 500; text-shadow: 2px 1px 1px #fff;	font-family: font4;
}

.maintenance-intro  h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #fff;  line-height: 40px;    padding: 10px 5px 10px 5px;

}

.maintenance-intro  h3:hover {
	    background: #fff;
    color: #0d5993; text-indent: 15px;
    box-shadow: 1px 1px 5px 1px #000;
    border-radius: 5px;
}
.maintenance-intro  p {
	font-family: font3; font-size: 1.25rem; line-height: 35px;
	text-align: center; font-weight: 500; letter-spacing: 1px;
}
.maintenance-intro .intro-legend {
	padding: 25px; background: #0d5993; margin-left: 50px;
     border-radius: 15px; margin-top: 50px; margin-right: -50px;
}

.maintenance-benefit-main {
    background: #fff;
    padding: 100px 50px 250px 0px;
}
.maintenance-benefit-main .container-fluid {
	padding: 0px;
}
.maintenance-benefits-section {
    background-color: #fff;
    padding: 50px 20px; margin-top: 50px;
}
.maintenance-benefit-main .benefit-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/3d-ac.png) no-repeat;
    background-size: 75%; background-color: #fff; padding: 0px 0px 100px 0px;
    height: 600px; border-radius: 100%; position: relative; background-position: center center;
}
.maintenance-benefit-main h2 {
    font-size: 45px;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
				padding-bottom: 50px; margin-left: 100px;
}
.maintenance-benefit-main h2 span {
	color: #0d5993; font-size: 65px;
}
.maintenance-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.maintenance-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.maintenance-tab-button {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    background: #0d5993;
    color: #fff;
    font-size: 1.2rem;
    font-family: font3;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
}

.maintenance-tab-button:not(:last-child) {
    border-right: 1px solid #fff;
}

.maintenance-tab-button:hover {
    background: #0A3C60;
}

.maintenance-tab-button.active {
    background: #2895E2;
    font-weight: bold;
				color: #000;
}

.maintenance-tab-contents {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.maintenance-tab-content {
    display: none;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.maintenance-tab-content.active {
    display: block;
}

.maintenance-tab-content p {
	font-family: font2; font-size: 1.2rem; line-height: 35px; font-weight: 500; letter-spacing: 1px;
}

.maintenance-tab-content ul {
    margin: 15px 0 0 20px;
    list-style: disc;
}

.maintenance-tab-content li {
    margin-bottom: 5px;
    font-size: 1.25rem; font-family: font3; letter-spacing: 1px;
    color: #555;
}

.service-splitter {
	background: #0d5993; color: #fff;
}

.service-splitter h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 50px;
    text-align: center;
    padding: 100px;
    background: #0d5993;
    margin-top: -100px;
    margin-bottom: -100px;
    border-radius: 25px;
}

.maintenance-services {
	    background: linear-gradient(to right, #ffffff8f, #ffffff8f), url(/img/homepage/blue-grid-25.png) no-repeat;
    background-size: 15%; background-attachment: fixed;
    background-position: top;
       padding: 275px 0px 200px 0px;
    text-align: center;
    background-repeat: repeat;
}
.maintenance-services .services-card1 {
	padding: 0px 0px 50px 0px; background: #98CCF2; color: #0d5993;
}
.maintenance-services .services-card1:hover {
 box-shadow: 0px 0px 0px 5px #0d5993; 
}
.maintenance-services h2 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; text-align: left; margin-left: 25px; margin-top: 15px;
}
.maintenance-services h2 span {
	font-size: 25px; font-family: font4;
}
.maintenance-services p {
	margin: 0px 25px 0px 25px; font-family: font3; letter-spacing: 1px; font-size: 1.25rem; line-height: 30px;margin-top: 25px;
}

.maintenance-services i {
    font-size: 50px;
    color: #0d5993;
    background: #98CCF2;
    padding: 20px; position: relative;
}
.maintenance-services .services-card1:hover i {
	background: #0d5993;box-shadow: -1px 0px 0px 0px #0d5993; color: #fff;
}
.maintenance-services hr {
    height: 5px;
    opacity: 100%;
    background: #98CCF2; 
    width: 109.5%;
    margin-left: -29px;
}
.maintenance-services .services-card1:hover hr {
 background: #0d5993;
}

.maintenance-choose-berkshire  {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/maintenance-call.jpg) no-repeat;
    background-size: contain; background-position: center;
    height: 100%; padding: 150px 100px 150px 100px; 
}
.maintenance-choose-berkshire  .container {
	border: 3px solid #0d5993;
}
.maintenance-choose-berkshire  .choose-intro {
padding: 75px; background: #0d5993;    border-radius: 5px;margin-left: 50px;
    margin-right: -50px;
}
.maintenance-choose-berkshire  .choose-reasons {
      text-align: center;
    position: relative;
    left: -5%;
    top: 0%;
    padding: 35px 25px 25px 25px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: 155px;

}

.maintenance-choose-berkshire .choose-reasons:hover {
	background: #0d5993; color: #fff;
}
.maintenance-choose-berkshire .choose-reasons:hover a {
	color: #fff;
}
.maintenance-choose-berkshire h2 {
	font-family: font2; font-size: 30px; color: #fff; font-weight:500;
}

.maintenance-choose-berkshire h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #fff; text-align: left; padding: 15px; margin-top: 45px; text-shadow: 1px 1px 1px #000;
}
.maintenance-choose-berkshire h4 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 18px;
    margin-left: -10px;
    margin-right: -10px;
    line-height: 30px;
}
.maintenance-choose-berkshire p {
	font-family: font3; letter-spacing: 1px; line-height: 35px; font-size: 1.25rem; color: #fff;
}
.maintenance-choose-berkshire i {
	font-size: 45px;
}
.maintenance-choose-berkshire a {
	color: inherit;
}
	
	
/*		MAINTENANCE END*/




/*EMERGENCY START*/

	.emergency-intro {
	padding: 250px 0px 250px 0px;
	    background: linear-gradient(to right, #ffffff66, #ffffff66), url(/img/services/emergency-hvac-01.jpg) no-repeat;
    background-size: cover; background-position: center center;
    height: 100%;
}

.emergency-intro  h1 {
	font-family: font2; letter-spacing: 2px; font-size: 30px; text-align: center;
}

.emergency-intro  h1 strong {
	font-size: 60px; color: #0d5993; font-weight: 500; text-shadow: 2px 1px 1px #fff;	font-family: font4;
}

.emergency-intro  h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #fff;  line-height: 40px;    padding: 10px 5px 10px 5px;

}

.emergency-intro  h3:hover {
	    background: #fff;
    color: #0d5993; text-indent: 15px;
    box-shadow: 1px 1px 5px 1px #000;
    border-radius: 5px;
}
.emergency-intro  p {
	font-family: font3; font-size: 1.25rem; line-height: 35px;
	text-align: center; font-weight: 500; letter-spacing: 1px;
	    text-shadow: 1px 1px black;
}
.emergency-intro .intro-legend {
	padding: 25px; background: #0d5993; margin-left: 50px;
     border-radius: 15px; margin-top: 50px; margin-right: -50px;
}

.emergency-benefit-main {
    background: #fff;
    padding: 100px 50px 250px 0px;
}
.emergency-benefit-main .container-fluid {
	padding: 0px;
}
.emergency-benefits-section {
    background-color: #fff;
    padding: 50px 20px; margin-top: 50px;
}
.emergency-benefit-main .benefit-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/3d-ac.png) no-repeat;
    background-size: 75%; background-color: #fff; padding: 0px 0px 100px 0px;
    height: 600px; border-radius: 100%; position: relative; background-position: center center;
}
.emergency-benefit-main h2 {
    font-size: 45px;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
				padding-bottom: 50px; margin-left: 100px;
}
.emergency-benefit-main h2 span {
	color: #0d5993; font-size: 65px;
}
.emergency-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.emergency-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.emergency-tab-button {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    background: #0d5993;
    color: #fff;
    font-size: 1.2rem;
    font-family: font3;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
}

.emergency-tab-button:not(:last-child) {
    border-right: 1px solid #fff;
}

.emergency-tab-button:hover {
    background: #0A3C60;
}

.emergency-tab-button.active {
    background: #2895E2;
    font-weight: bold;
				color: #000;
}

.emergency-tab-contents {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.emergency-tab-content {
    display: none;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.emergency-tab-content.active {
    display: block;
}

.emergency-tab-content p {
	font-family: font2; font-size: 1.2rem; line-height: 35px; font-weight: 500; letter-spacing: 1px;
}

.emergency-tab-content ul {
    margin: 15px 0 0 20px;
    list-style: disc;
}

.emergency-tab-content li {
    margin-bottom: 5px;
    font-size: 1.25rem; font-family: font3; letter-spacing: 1px;
    color: #555;
}

.service-splitter {
	background: #0d5993; color: #fff;
}

.service-splitter h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 50px;
    text-align: center;
    padding: 100px;
    background: #0d5993;
    margin-top: -100px;
    margin-bottom: -100px;
    border-radius: 25px;
}

.emergency-services {
	    background: linear-gradient(to right, #ffffff8f, #ffffff8f), url(/img/homepage/blue-grid-25.png) no-repeat;
    background-size: 15%; background-attachment: fixed;
    background-position: top;
       padding: 275px 0px 200px 0px;
    text-align: center;
    background-repeat: repeat;
}
.emergency-services .services-card1 {
	padding: 0px 0px 50px 0px; background: #98CCF2; color: #0d5993;
}
.emergency-services .services-card1:hover {
 box-shadow: 0px 0px 0px 5px #0d5993; 
}
.emergency-services h2 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; text-align: left; margin-left: 25px; margin-top: 15px;
}
.emergency-services h2 span {
	font-size: 25px; font-family: font4;
}
.emergency-services p {
	margin: 0px 25px 0px 25px; font-family: font3; letter-spacing: 1px; font-size: 1.25rem; line-height: 30px;margin-top: 25px;
}

.emergency-services i {
    font-size: 50px;
    color: #0d5993;
    background: #98CCF2;
    padding: 20px; position: relative;
}
.emergency-services .services-card1:hover i {
	background: #0d5993;box-shadow: -1px 0px 0px 0px #0d5993; color: #fff;
}
.emergency-services hr {
    height: 5px;
    opacity: 100%;
    background: #98CCF2; 
    width: 109.5%;
    margin-left: -29px;
}
.emergency-services .services-card1:hover hr {
 background: #0d5993;
}

.emergency-choose-berkshire  {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/emergency-call-2.jpg) no-repeat;
    background-size: contain; background-position: center;
    height: 100%; padding: 150px 100px 150px 100px; 
}
.emergency-choose-berkshire  .container {
	border: 3px solid #0d5993;
}
.emergency-choose-berkshire  .choose-intro {
padding: 75px; background: #0d5993;    border-radius: 5px;margin-left: 50px;
    margin-right: -50px;
}
.emergency-choose-berkshire  .choose-reasons {
      text-align: center;
    position: relative;
    left: -5%;
    top: 0%;
    padding: 35px 25px 25px 25px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: 155px;

}

.emergency-choose-berkshire .choose-reasons:hover {
	background: #0d5993; color: #fff;
}
.emergency-choose-berkshire .choose-reasons:hover a {
	color: #fff;
}
.emergency-choose-berkshire h2 {
	font-family: font2; font-size: 30px; color: #fff; font-weight:500;
}

.emergency-choose-berkshire h3 {
	font-family: font3; letter-spacing: 2px; font-size: 20px; color: #fff; text-align: left; padding: 15px; margin-top: 45px; text-shadow: 1px 1px 1px #000;
}
.emergency-choose-berkshire h4 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 18px;
    margin-left: -10px;
    margin-right: -10px;
    line-height: 30px;
}
.emergency-choose-berkshire p {
	font-family: font3; letter-spacing: 1px; line-height: 35px; font-size: 1.25rem; color: #fff;
}
.emergency-choose-berkshire i {
	font-size: 45px;
}
.emergency-choose-berkshire a {
	color: inherit;
}
	


/*EMERGENCY END*/


/*FINANCING START*/

.financing-intro {
	padding: 175px 0px 175px 0px; background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/blue-grid-25.png) repeat;
    background-size: 15%; background-attachment: fixed;
    background-position: top;
}

.financing-intro .container {
	background: #fff; padding: 0px; border: 2px solid #0d5993;
}

.financing-intro .finance-intro {
	background: #fff; padding: 100px 25px;
}

.financing-intro .finance-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/hvac-financing-1.png) no-repeat;
    background-size: cover; height: 100%;
    background-position: top;
}

.financing-intro .square {
	padding: 15px; text-align: center; border: 3px dotted #0d5993; margin: 15px 0px 15px 0px; box-shadow: 0px 0px 0px 2px #0d5993;
}

.financing-intro .square p {
	line-height: 25px; font-size: 15px;
}

.financing-intro h1 {
	font-family: font2; font-size: 30px; margin: 15px 0px 25px 0px;
}

.financing-intro h1 span {
	font-family: font4; font-size: 45px;
}

.financing-intro h3 {
	font-family: font2; font-size: 20px; font-weight: 500; letter-spacing: 0px;
}

.financing-intro p {
	font-family: font3; font-size: 17px; line-height: 30px;
}

.financing-intro i {
	font-size: 35px; color: #0d5993; margin: 10px 0px 10px 0px;
}


.finance-options {
	padding: 150px 100px 150px 150px; background: linear-gradient(to right, #000000bf, #000000bf), url(/img/services/hvac-financing-2.jpg) no-repeat;
    background-size: cover; height: 950px; background-attachment: fixed;
}

.finance-options .finance-card {
	padding: 25px 25px 75px 25px; background: #fff0; border: 5px double #fff; color: #fff; height: 600px;
}

.finance-options .finance-card:hover {
	background: #fff; color: #000; border: 5px double #dd0301;
}

.finance-options .finance-card:hover h2 {
	color: #dd0301; text-align: center;
}
.finance-options .finance-card:hover p {
	text-align: center;
}
.finance-options .finance-card:hover i {
	margin-left: 200px; font-size: 75px; transition: 1s;
}

.finance-options .finance-card:hover h5 {
	display: block; transition: 2s;background: #dd0301; color: #fff; font-family: font4; font-size: 20px; text-transform: uppercase;

}

.finance-options h2 {
	font-family: font2; font-size: 25px; letter-spacing: 0px;color: #ffbbbb; text-shadow: 1px 1px 1px #000;
}

.finance-options h5 {
	padding: 20px 0px 20px 0px;  display: none;	position: relative;
}

.finance-options p {
	font-family: font3; font-size: 18px; line-height: 30px;
}

.finance-options i {
	font-size: 35px; color: #dd0301; padding: 25px 10px 25px 10px;
}

.finance-options li {
	font-family: font3; font-size: 16px; line-height: 35px;
}

/*FINANCING END*/



/*REVIEW START
*/
.review-intro {
	    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/black-grid-25.png);
    background-size: 15%; background-attachment: fixed;
    padding: 150px 0px 150px 0px;
    background-color: #fff;
}

.review-intro .container {
	background: #0d5993c7; padding: 0px; color: #fff;
}

.review-intro .review-content {
	padding: 75px 25px; 
}

.review-intro .review-image {
	background: linear-gradient(to right, #00000000, #00000000), url(/img/services/review-hvac.jpg) no-repeat;
    background-size: 100%; height: 100%;
}

.review-intro h1 {
	font-family: font2; font-size: 20px; line-height: 50px;
}

.review-intro h1 span {
	font-family: font4; font-size: 50px; letter-spacing: 1px;
}

.review-intro p {
	font-family: font3; font-size: 20px; line-height: 30px;
}

/* REVIEW END*/



/*FAQS START*/

.faq-intro {
 background: #f9f9f9;
}


.faq-intro .container-fluid {
	padding: 0px;
}

.faq-intro .faq-image {
	background: linear-gradient(to right, #00000000, #00000000), url(/img/services/hvac-faq.jpg) no-repeat;
    background-size: 100%;  height: 900px; margin-bottom: -58px;
}

.faq-intro .faq-content {
		padding: 150px 50px 150px 50px; position: relative; background: #fff; margin-left: -250px; margin-right: 100px; margin-top: 100px;
		    box-shadow: 0px 0px 15px 1px #000; height: 65%;
}

.faq-intro h1 {
	font-family: font2; font-size: 20px; letter-spacing: 1px;
}
.faq-intro h1 span {
	font-family: font4; letter-spacing: 1px; font-size: 45px;
}

.faq-intro p {
	font-family: font3; font-size: 20px; line-height: 30px;
}


.hvac-faqs {
	padding: 150px 0px 100px 0px;  background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/black-grid-25.png);
    background-size: 15%; background-attachment: fixed;
}
.hvac-faqs h1 {
	    font-family: font4;
    font-size: 3.4rem;
    
    color: #051a28; text-align: center;
}
.hvac-faqs h2 {
	    font-family: font4;
    font-size: 3.4rem;
    
    color: #051a28; text-align: center;
}

.hvac-faq-accordion {
  margin-top: 120px;
}

.hvac-faq-question {
  font-family: font3;
  font-size: 18px;
  cursor: pointer; letter-spacing: 1px; font-weight: 600;
  margin: 0;
  padding: 15px;
  border:none;
  margin-bottom: 5px;
  transition: background 0.3s ease;
		color: #051A28;
}

.hvac-faq-question.active {
  background: #051A28;
  color: #fff;
}

.hvac-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9; font-family: font3;
  padding: 0 15px;
  border:none;
}
.hvac-faq-answer p {
  font-family: font3;
  padding: 15px 0;
  margin: 0;
}

.heating-faqs {
	padding: 100px 0px 100px 0px;  background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/red-grid-25.png);
    background-size: 15%; background-attachment: fixed;
}

.heating-faqs h2 {
	    font-family: font4;
    font-size: 65px;
    color: #dd0301; text-align: center;
}

.heating-faq-accordion {
  margin-top: 120px;
}

.heating-faq-question {
 font-family: font3;
  font-size: 18px;
  cursor: pointer; letter-spacing: 1px; font-weight: 600;
  margin: 0;
  padding: 15px;
  border:none;
  margin-bottom: 5px;
  transition: background 0.3s ease;
  color: #dd0301;
}

.heating-faq-question.active {
  background: #dd0301;
  color: #fff;
}

.heating-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fefefe;
  padding: 0 15px;
  border: none;
}
.heating-faq-answer p {
  font-family: font3;
  padding: 15px 0;
  margin: 0;
}

.cooling-faqs {
	padding: 100px 0px 100px 0px;  background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/blue-grid-25.png);
    background-size: 15%; background-attachment: fixed;
}

.cooling-faqs h2 {
	    font-family: font4;
    font-size: 65px;
    color: #0d5993; text-align: center;
}

.cooling-faq-accordion {
  margin-top: 120px;
}

.cooling-faq-question {
  font-family: font3;
  font-size: 18px;
  cursor: pointer; letter-spacing: 1px; font-weight: 600;
  margin: 0;
  padding: 15px;
  border:none;
  margin-bottom: 5px;
  transition: background 0.3s ease;
  color: #0d5993;
}

.cooling-faq-question.active {
  background: #0d5993;
  color: #fff;
}

.cooling-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fefefe;
  padding: 0 15px;
  border: none;
}
.cooling-faq-answer p {
  font-family: font3;
  padding: 15px 0;
  margin: 0;
}


/*FAQS END*/


/*SCHEDULING START*/

.schedule-hero {
  padding: 100px 0;
  text-align: center;
  background: #fff;
  color: #000;
  animation: fadeIn 1.2s ease-in;
}
.schedule-hero img {
  max-height: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-schedule {
	padding: 150px 0px 150px 0px;    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/blue-grid-25.png);
    background-size: 15%;
    background-color: #fff; background-attachment: fixed;
}

.why-schedule h4 {
	font-family: font3; font-size: 20px; list-style-type: none;
}

.why-schedule i {
	font-size: 35px; margin-bottom: 15px; color: #0d5993;
}

.why-schedule .rec {
	padding: 15px; border: 1px dotted #0d5993; margin: 10px; text-align: center; background: #fff;
}

.schedule-faqs-tabbed {
  padding: 80px 0;
background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/blue-grid-25.png);
    background-size: 15%;
    background-color: #fff; background-attachment: fixed;
}

.faq-tabs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-tab {
  font-family: font3;
  font-size: 18px;
  text-align: left;
  padding: 15px 20px;
  border: 2px solid #0d5993;
  background-color: #fff;
  color: #0d5993;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.faq-tab:hover,
.faq-tab.active {
  background-color: #0d5993;
  color: #fff;
}

.faq-content {
         background: linear-gradient(180deg,rgba(255, 255, 255, 1) 22.5%, rgba(255, 255, 255, 0) 22.5%), url(/img/services/hvac-schedule.jpg);
    background-size: cover;
    position: relative; 
    background-repeat: no-repeat;
    height: 100%;

  padding: 30px;
  border-radius: 10px;
  border: 2px solid #ccc;
  transition: all 0.3s ease;
}

.faq-answer {
  display: none;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.faq-answer h5 {
  font-family: font2;
  font-size: 20px;
  color: #0d5993;
  margin-bottom: 15px;
}

.faq-answer p {
  font-family: font3;
  font-size: 17px;
  color: #000;
  line-height: 28px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* === Section Title === */
.section-heading {
  font-family: font4;
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.section-subtext {
  font-family: font3;
  font-size: 18px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* === Floating Cards over Background === */
.schedule-card-section {
  padding: 120px 0;
  background: url('/img/services/finance-service.jpg') center center / cover no-repeat;
  position: relative;
}
.schedule-card-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.schedule-card {
  flex: 0 0 300px;
  padding: 30px;
  border-radius: 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: floatIn 1s ease both;
}
.schedule-card h3 {
  font-family: font2;
  font-size: 24px;
  margin-bottom: 10px;
}
.schedule-card p {
  font-family: font3;
  font-size: 16px;
}
.schedule-card i {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
}

/* === Color Schemes per Card === */
.card-black {
  border-color: #000;
}
.card-black:hover {
  background-color: #000;
  transform: translateY(-5px);
}
.card-red {
  border-color: #dd0301;
}
.card-red:hover {
  background-color: #dd0301;
  transform: translateY(-5px);
}
.card-blue {
  border-color: #0d5993;
}
.card-blue:hover {
  background-color: #0d5993; 
  transform: translateY(-5px);
}

/* === Button Styling === */
.schedule-btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: font2;
  font-size: 16px;
  border-radius: 6px;
  margin-top: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #0d5993;
  color: #fff;
}
.schedule-btn:hover {
  transform: scale(1.05);
  background: #fff;border: 1px solid #000;
}

/* === Animations === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatIn {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.schedule-footer-cta {
	padding: 100px 0px 100px 0px;
}
.schedule-footer-cta h3 {
	font-family: font4; font-size: 35px;
}

.schedule-footer-cta p {
	font-family: font3; font-size: 17px; 
}

/*SCHEDULING 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 ****/

.location-start {
	background: linear-gradient(to right, #000000c7, #000000c7), url(/img/services/commercial-hvac-2.jpg);
    background-size: cover;
    position: relative; background-position: center center;
    background-repeat: no-repeat; color: #fff;
    height: 100%; padding: 150px 0px 150px 0px;
}

.location-start .location-legend {
	padding: 50px 15px; border: 2px solid #fff;
}

.location-start h1 {
	font-family: font4; font-size: 35px; letter-spacing: 1px;
}

.location-start h3 {
	font-family: font3; font-weight: 600; font-size: 20px; line-height: 40px; color: #fff; letter-spacing: 1px; text-shadow: 1px 1px 1px #000;
}
.location-start p {
	font-family: font3; font-size: 20px; line-height: 35px;
}
.area:nth-child(odd) {
	padding: 125px 0 125px 0; background: rgb(255,255,255);
}
.area:nth-child(even) {
	padding: 125px 0 125px 0; background: rgb(245,245,245);
}
.area h2 {
	font-size: 2.5rem; font-family: font4; font-weight: 800; color: rgb(196,41,56);
}
.area h4 {
	font-size: 18px; font-family: font2; color: rgb(75,75,75); letter-spacing: 0px;
}
.area p {
	font-size: 17px; color: rgb(12,12,12); font-family: font3;
}
.area iframe {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);
}

.area .area-box1 {
	padding: 10px; border: 1px solid #000; text-align: center;
}

.area .area-box1 h3 {
	font-family: font3; font-weight: 600; color: #000;
}

.area .area-box1 p {
	font-size: 15px;
}

.area .area-box2 {
	padding: 10px; border: 1px solid #dd0301; text-align: center;
}


.area .area-box2 h3 {
	font-family: font3; font-weight: 600; color: #dd0301;
}

.area .area-box2 p {
	font-size: 15px;
}

.area .area-box3 {
	padding: 10px; border: 1px solid #0d5993; text-align: center;
}


.area .area-box3 h3 {
	font-family: font3; font-weight: 600; color: #0d5993;
}

.area .area-box3 p {
	font-size: 15px;
}
.area .row {
  align-items: stretch;
}

.area .area-box1,
.area .area-box2,
.area .area-box3 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.location-map {
	padding: 125px 0px 0px 100px;
}

.location-intro {
	padding: 100px 0px 100px 0px;         background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%;
    background-attachment: fixed;
    background-color: #fff !important;
    background-repeat: repeat;
}
.location-intro .spanner img {
    max-width: 70%;
    margin-left: 45px;
    margin-top: 15px;
}
.location-intro h1 {
	font-family: font2; font-size: 25px;
}
.location-intro h1 span {
	font-size: 20px;
}
.location-intro h1 strong {
	color: #0d5993; font-family: font4; font-size: 45px;
}
.location-intro h2 {
	font-family: font3; font-size: 25px; color: #0d5993;
}
.location-intro h4 {
  position: relative;
  font-family: font3;
  font-size: 20px;
  text-align: center;
  padding: 25px;
  background: #0d5993;
  margin: 10px;
  width: 250px;
  color: #fff;
  z-index: 1;
  overflow: hidden; /* ensures pseudo-elements don't spill out */
}

.location-intro h4::before {
  content: "\f6e3"; /* hammer icon */
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.1); /* subtle watermark effect */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  z-index: 0; /* behind the text */
  pointer-events: none;
}



.location-intro p {
	font-family: Atlassian Sans; font-size: 17px; line-height: 35px;
}
.location-intro img {
	max-width: 35%; margin-left: 350px; margin-bottom: 100px;
}
.location-intro .location-content {
	padding: 75px 50px 50px 50px;    border: 2px solid #000;
    height: 100%;
}
.location-intro .location-services {
	padding: 25px; 
}
/* Highlight active tab */


.location-body {
	padding: 100px 0px 100px 0px;     background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/roofing-2.jpg);
    background-size: cover; background-position: bottom center; background-attachment: fixed;
    background-repeat: repeat;
}
.location-body .row{
	display: flex;
	align-items: stretch;
	
}
.location-body .row > [class*='col-']{
	align-items: stretch;

}
.location-body .location-card {
/*	padding: 50px 25px 50px 25px; border-radius: 5px; background: #fff; margin: 15px 0px 15px 0px; border: 2px solid #000;*/
height: 100%;

display: flex;
/*justify-content: center;*/
align-items: center;


}
.location-body h2 {
	font-family: font3; font-size: 25px; color: #0d5993;
}
.location-body p {
	font-family: font3; font-size: 17px; line-height: 35px;
}
.location-body i {
	    font-size: 50px;
    /*left: 80%;*/
    margin-top: -25px;
}


.location-body .view1 {
	padding: 5px;
	background-color: #0000009e;
	color: #000;
	position: relative;
	overflow: hidden;
margin: 15px 0px;
	border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
	transition: 1s; 
}
.location-body .view1:hover {

	transform: scale(1.03); 

}
.location-body .view1::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    /*height: 600px;*/
    /*width: 200px;*/
    height: 000px;
    width: 0%;
    background: #ed1d26;
    box-shadow: 0 0 10px #ed1d26, 0 0 40px #ed1d26, 0 0 80px #ed1d26;
	
	
	pointer-events: none; 
    /*animation: rotate_border 6s linear infinite;*/
	
	transition: 1s; 
}

.location-body .view1:hover::after {
	
    height: 2000px;
    width: 15%;	
	
	
	animation: rotate_border 8s linear infinite;
}

#in {
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 99;
	    padding: 50px 25px;
			
			
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.location-body .view1:hover #in {
	background: #fff;
}

@keyframes rotate_border{
	
	100%{
		transform: translate(-50%,-50%) rotate(360deg); 
	}
	
}


.location-choose {
	padding: 100px 0px 100px 0px;background: linear-gradient(to right, #ffffffd9, #ffffffd9), url(/img/homepage/9.png);
    background-size: cover;
    background-color: #0009;
    background-repeat: repeat;
}
.location-choose .cawd {
	position:relative; 
	padding: 25px; background: #fff; margin: 15px 0px 15px 0px;
	
	opacity: 0;
	transition: 1.5s;
	/*z-index: 3; */
}
.location-choose .cawd::before {
	
	position:absolute;
	top:0%;
	left: 0%;
	
	/*transform:translate(-50%,-50%); */
	
	/*z-index: 0; */

  content: "\f6e3"; 
  font-family: "Font Awesome 6 Pro"; 
  font-weight: 900; 
  font-size: 24px;
  margin-right: 10px;
  color: #0d5993;
	padding:5px;
	
	background: black; 
}








.location-choose .cawd.left {
		transform: translateX(-20%);

}
.location-choose .cawd.right {
		transform: translateX(20%);
}

.location-choose h3 {
	font-family: font3; font-size: 35px;  text-align: center; margin-bottom: 100px;
}
.location-choose h3 strong {
	font-size: 25px; font-family: Atlassian Sans; color: #ed1d26;
}
.location-choose h4 {
	font-family: font3; font-size: 23px;  text-align: center;
}
.location-choose p {
	font-family: Atlassian Sans; font-size: 17px; line-height: 35px; text-align: center;
}
.location-choose img {
	box-shadow: 1px 1px 10px 1px #000;
}



.location-choose .cawd.left.show-more {
	transform: translateX(0);
	opacity: 1; 
}


.location-choose .cawd.right.show-more {
	/*background: black;*/
	transform: translateX(0);
	opacity: 1; 
	
	
}



/* === Full-height wrapper === */
.chevron-bar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}

/* === Vertical red bar === */
.chevron-vertical-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 100%;
  background-color: #ed1d26;
  z-index: 1;
}

/* === Chevron button container (centered) === */
.chevron-button-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: auto;
}

/* === Chevron button styling === */
.chevron-button {
  background-color: #ed1d26;
  color: white;
  padding: 20px 20px;
  font-size: 15px;
  font-weight: bold;
  font-family: Atlassian Sans;
  
  line-height: 1.4;
  width: 170px;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.2);
  z-index: 2;
  position: relative;
}

.chevron-button:hover {
  
}

/* === Hover panel === */
.chevron-panel {
  position: absolute;
  top: 0; margin-top: -50px;
  left: 100%;
  margin-left: -3px;
  background-color: #fff;
  color: #333;
  border-radius: 0 10px 10px 0;
  padding: 20px;
  box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.15);
  min-width: 400px;
  display: flex;
  gap: 30px;
	font-family: Atlassian Sans;

  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* === Show panel on hover === */
.chevron-button-wrapper:hover .chevron-panel {
  opacity: 1;
  pointer-events: auto;
}

/* === Panel content layout === */
.chevron-column {
  flex: 1;
  min-width: 180px;
}

.chevron-column h4 {
  font-size: 16px;
  margin-bottom: 10px; font-family: font3; 
  color: #ed1d26;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
}

.chevron-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.chevron-column ul li {
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.chevron-column ul li:last-child {
  border-bottom: none;
}

.chevron-panel mark {
	padding: 10px; background: #ed1d26; color: #fff; border-radius: 3px; margin-left: -15px;
}
.chevron-panel mark:hover {
	background: #000;
}
.chevron-panel a {
	color: inherit;
}
.chevron-panel a:hover {
	color: #ed1d26; text-decoration: underline !important; font-weight: 600;
}


/**** Contact Section ****/
/* Border color animation */
@keyframes borderCycle {
  0% {
    border-color: #000;
    box-shadow: 0 0 10px #000;
  }
  33% {
    border-color: #dd0301;
    box-shadow: 0 0 10px #dd0301;
  }
  66% {
    border-color: #0d5993;
    box-shadow: 0 0 10px #0d5993;
  }
  100% {
    border-color: #000;
    box-shadow: 0 0 10px #000;
  }
}

/* Text color animation for h1 */
@keyframes textColorCycle {
  0% {
    color: #000;
  }
  33% {
    color: #dd0301;
  }
  66% {
    color: #0d5993;
  }
  100% {
    color: #000;
  }
}

.contact-start {
  padding: 150px 0px;
  background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/black-grid-75.png);
  background-size: 15%;
  background-attachment: fixed;
  background-color: #fff !important;
}

.contact-start .start-content {
  padding: 100px 25px 100px 50px;
  background: #fff;
  border: 5px solid #000;
  border-radius: 5px;
  animation: borderCycle 4s infinite linear;
}

.contact-start h1 {
  font-family: font4;
  letter-spacing: 1px;
  font-size: 40px;
  animation: textColorCycle 4s infinite linear;
}

.contact-start h3 {
  font-family: font3;
  font-size: 20px;
  text-align: left;
  line-height: 40px;
  color: #000;
}

.contact-start h3 strong {
  font-size: 20px;
  font-family: font2;
}

.contact-start p {
  font-family: font3;
  font-size: 18px;
  line-height: 30px;
}

.mapper {
	padding-left: 100px;
}
.contact-services {
	padding: 100px 0px 100px 0px; text-align: center;
	
 background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/black-grid-25.png);
    background-size: 15%; 
    background-attachment: fixed;
}

.contact-services h2 {
	font-family: font2; font-size: 25px;
}

.contact-services .contact-card1 {
    padding: 75px 25px 75px 25px; border: 2px solid #000; background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/black-grid-75.png);
    background-size: 15%; border-bottom: none; border-top-width: 10px;
    background-attachment: fixed;    background-color: #0009 !important;
}
.contact-services .contact-card1:hover {
	box-shadow: 1px 1px 10px 1px #000;
}
.contact-services .contact-card1 i {
	font-size: 65px; margin-bottom: 50px; color: #000;
}

.contact-services .contact-card2 {
	    padding: 75px 25px 75px 25px; border: 2px solid #dd0301; background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/red-grid-75.png);
    background-size: 15%; border-top: none; border-bottom-width: 10px;
    background-attachment: fixed;    background-color: #dd030126 !important;
}

.contact-services .contact-card2:hover {
	box-shadow: 1px 1px 10px 1px #dd0301;
}

.contact-services .contact-card2 h2 {
	color: #dd0301
}

.contact-services .contact-card2 i {
	font-size: 65px; margin-bottom: 50px; color: #dd0301;
}

.contact-services .contact-card3 {
    padding: 75px 25px 75px 25px;border: 2px solid #0d5993; background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%; border-bottom: none; border-top-width: 10px;
    background-attachment: fixed;    background-color: #0d599330 !important;
}

.contact-services .contact-card3:hover {
	box-shadow: 1px 1px 10px 1px #0d5993;
}
.contact-services .contact-card3 h2 {
	color: #0d5993
}
.contact-services .contact-card3 i {
	font-size: 65px; margin-bottom: 50px; color: #0d5993;
}
/**** Testimonials Section ****/
.testimonials {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}


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

/* ========================================== */
/* === 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 .upper-footer {
	padding: 25px; background: #000;
}

.footer-section .upper-footer .spanner {
	margin-top: 175px;
}

.footer-section .vms-link-wrapper img {
	width: 50%;
}
.footer-section .vms-link-wrapper a {
	width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.footer-section {
	padding: 0 0 10px; background: rgb(83,82,82); color: rgb(255, 255, 255); font-size: 18px; font-weight: 400;
}
.footer-section p {
	color: rgb(255,255,255) !important; font-size: 17px; font-family: 'font3'; letter-spacing: 1px;
}
.footer-section .h-card a {
	color: inherit;
}

.footer-section .service-cities p {
	margin: 0 0 3px;
}
.service-cities {
	margin-bottom: 1em;
}
.service-cities img {
	padding-bottom: 20px;
}
.footer-section h5 {
font-family: font3;
}
.footer-section  h4 {
	font-size: 20px; font-family: font2;
}
.footer-section  h3 {
	font-size: 30px; font-family: font2;
}

.bottom-footer a {
	color: inherit;
}
.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; color: rgb(255,255,255);
}





/* === Lg. Laptop CSS Section ================= */
@media screen and (max-width : 1575px) {
	/*** Don't place anything here, unless absolutely necessary ***/
	.top-header div[class*='col-']:first-child img {
    z-index: 1000;
    position: relative;
    margin-left: -35px;
    margin-top: -30px;
    margin-right: 0;
    padding: 0;
}
	
.video-overlay h3 {
    font-family: font4;
    letter-spacing: 1px;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #000;
    color: #fff;
}
.video-overlay {
    position: relative;
    padding: 100px 000px 100px 100px;
    background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 85%) 65%);
    margin-top: -990px;
    width: 100%;
    height: 1000px;
    margin-bottom: 0;
}
.sidebar-animate {
    background: linear-gradient(180deg, rgb(0, 0, 0) 6.5%, #0d5993 6.5%);
    width: 90px;
    transition: .3s;
    top: 105px;
    border-right: 1px solid #000;
    height: 100%;
}
.sticky-nav-float {
    position: fixed;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -0%);
    background: linear-gradient(180deg, rgb(0, 0, 0) 6.5%, #0d5993 6.5%);
    padding: 5px 0;
    z-index: 9999;
    border-right: 3px solid #000;
    width: auto;
    height: auto;
    box-shadow: 0px -10px 0px 0px #000000;
    font-family: sans-serif;
}
.nav-main {
    list-style: none;
    margin: 0;
    line-height: 50px;
    padding: 0;
    display: flex;
}
.has-popover .popover {
    display: none;
    position: relative;
    top: -100%;
    left: 0%;
    background: #fff;
    padding: 10px 0;
    line-height: 30px;
    border-radius: 0px;
    min-width: 200px;
    white-space: nowrap;
}

.home1 {
    padding: 75px 0 75px 50px;
    background: #a3cff024;
}
.home1 .pad {
    padding: 75px 5px 75px 5px;
    /* background: linear-gradient(to right, #0000006e, #0000006e), url(/img/homepage/grid-4.png); */
    background-size: 15%;
    background-color: #0009;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%;
    border-right: 2px solid #fff;
    height: 300px;
    width: 200px;
}
.home1 .pad2 {
    padding: 75px 15px 75px 15px;
    /* background: linear-gradient(to right, #0000006e, #0000006e), url(/img/homepage/grid-4.png); */
    background-size: 15%;
    background-color: #0009;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%;
    border: none;
    height: 300px;
    width: 200px;
}

.home-heat h3 {
    font-family: font4;
    font-size: 1rem;
    letter-spacing: 1px;
}




.nav-tabs {
    background: #fff;
    display: block;
    position: relative;
    left: 0.5%;
    width: 100%;
    padding: 50px 20px 50px 20px;
    border: none;
}


.home-cool h3 {
    font-family: font4;
    font-size: 1rem;
    letter-spacing: 1px;
}



.home3 h3 {
    font-family: font4;
    letter-spacing: 1px;
    font-size: 1rem;
}



.card {
    position: relative;
    background: #fff;
    border: 2px solid transparent;
    width: 100%;
    left: 0px;
    padding: 30px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}



.about-history h2 {
    font-family: font2;
    font-size: 30px;
    margin-bottom: 100px;
    line-height: 85px;
    margin-left: 0px;
}



.service-hub .link-card .card-data {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: -8rem;
    width: 100%;
    height: 75px;
    left: 0%;
    transform: translate(-50%, -50%);
    border: 2px solid white;
    border-radius: 0.8rem;
    background: #0d5993;
    padding: 20px;
    box-shadow: 1px 1px 8px black;
    margin-inline: auto;
    /* opacity: 0; */
    transform: translateY(100%);
    transition: 1s;
    color: white;
    font-family: 'font3';
}


.hvac-header {
    background: linear-gradient(to right, #ffffffd9, #ffffffd9), url(/img/services/hvac-services-01.jpg) no-repeat;
    background-size: cover;
    height: 100%;
    padding: 200px 50px 250px 50px;
    background-attachment: fixed;
    background-position: center center;
}
.hvac-service-card1, .hvac-service-card2, .hvac-service-card3, .hvac-service-card4 {
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    height: auto;
    min-height: 450px;
    margin: 15px;
    position: relative;
}
.hvac-service-card1 h3, .hvac-service-card2 h3, .hvac-service-card3 h3, .hvac-service-card4 h3 {
    font-family: font3;
    letter-spacing: 2px;
    color: #fff;
    font-size: 1.5rem;
    background: #0d5993;
    text-align: right;
    margin-left: 0;
    margin-top: 35px;
    width: 100%;
    padding: 15px 10px 15px 0px;
    position: relative;
    transform: none;
}

.details-section h3 {
    font-family: font4;
    letter-spacing: 2px;
    font-size: 1.2rem;
    padding: 15px;
    color: #000;
    width: fit-content;
}


.refrigeration-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
    flex-direction: column;
}
.refrigeration-choose-berkshire {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/refrigeration-man.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    padding: 150px 100px 150px 100px;
}
.maintenance-choose-berkshire {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/maintenance-call.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    padding: 150px 100px 150px 100px;
}



.emergency-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
    flex-direction: column;
}


.emergency-choose-berkshire {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/emergency-call-2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    padding: 150px 100px 150px 100px;
}

.ac-choose-berkshire {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/ac-call.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    padding: 150px 100px 150px 100px;
}
.ductless-ac-choose-berkshire {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/ac-lady.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    padding: 150px 100px 150px 100px;
}







.location-map {
    padding: 125px 0px 0px 00px;
}



.finance-options {
    padding: 150px 20px 150px 20px;
    background: linear-gradient(to right, #000000bf, #000000bf), url(/img/services/hvac-financing-2.jpg) no-repeat;
    background-size: cover;
    height: auto;
    background-attachment: fixed;
}
.finance-options .finance-card {
    padding: 25px 25px 75px 25px;
    background: #fff0;
    border: 5px double #fff;
    color: #fff;
    height: auto;
}


.faq-intro .faq-image {
    background: linear-gradient(to right, #00000000, #00000000), url(/img/services/hvac-faq.jpg) no-repeat;
    background-size: cover;
    height: 900px;
    margin-bottom: -58px;
}
.faq-intro .faq-content {
    padding: 150px 50px 150px 50px;
    position: relative;
    background: #fff;
    margin-left: -250px;
    margin-right: 100px;
    margin-top: 100px;
    box-shadow: 0px 0px 15px 1px #000;
    height: auto;
}

.mapper {
    padding-left: 0px;
}
.footer-section .upper-footer .spanner {
    margin-top: 0;
}

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


}
/* === Tablet CSS Section ===================== */
@media screen and (max-width: 991px) {
.sticky-nav-float {
    position: fixed;
    top: 184px;
    left: 0px;
    background: linear-gradient(180deg, rgb(0, 0, 0) 6.5%, #0d5993 6.5%);
    padding: 75px 0;
    z-index: 9999;
    border-right: 3px solid #000;
    width: 175px;
    height: 100%;
    box-shadow: 0px -10px 0px 0px #000000;
    font-family: sans-serif;
				display: none;
}
.pest-expandable-button {
    position: fixed;
    bottom: 20px;
    right: 0;
    width: 225px;
    background-color: #000;
    color: #fff;
    border-radius: 30px;
    overflow: hidden;
    z-index: 999;
    border: 1px solid #fff;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.pest-expandable-button.opened {
    width: auto;
    border-radius: 20px;
}
/**** 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-top-header img{
	max-width:100px;
}
.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,
.navbar-sidebar .dropdown-menu-mobile-3 {
    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(231 231 231); 
    border: 0; 
    visibility: hidden; 
    border-radius: 0; 
    transform: scale(1,0); 
    -webkit-transition: all .30s ease;
    -moz-transition: all .30s ease;
    -o-transition: all .30s ease;
    transition: all .30s ease;
}

.dropdown-menu-animate, 
.dropdown-menu-animate-2,
.dropdown-menu-animate-3 {
    display: inline-block !important; 
    transform: scale(1,1) !important; 
    padding: 25px 0 !important; 
    height: auto !important; 
    visibility: visible !important;
}

.navbar-sidebar .dropdown-menu-mobile a, 
.navbar-sidebar .dropdown-menu-mobile-2 a,
.navbar-sidebar .dropdown-menu-mobile-3 a {
    color: rgb(75,75,75); 
    font-weight: 600 !important; 
    font-size: 1rem; 
    font-family: 'font4'; 
    text-align: left;
    margin: 10px 0;
}

.navbar-sidebar {
	padding-top: 100px; height: 100%; width: 235px; 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-size: 1rem;
    color: #0d5993;
    font-weight: 500;
    text-shadow: 2px 1px 1px #fff;
    font-family: font4;
}
.nav-link{
    font-size: 1rem;
    color: #0d5993;
    font-weight: 500;
    text-shadow: 2px 1px 1px #fff;
    font-family: font4;
}
.bar-block.center .bar-item {
	text-align: center;
}
.block {
	display: block; width: 100%;
}

/**** Home Section ****/
.home-header-section {
	/*padding-top: 125px;*/

	padding-top:0;
}
.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-overlay {
    position: relative;
    padding: 60px 10px 60px 10px;
    background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 85%) 65%);
    margin-top: -900px;
    width: 100%;
    height: auto;
    margin-bottom: -215px;
}
.video-overlay .row {
	--bs-gutter-x: 0;
}
.video-overlay h1 {
	font-family: font4; font-size: 1.7rem; color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;  margin-bottom: 50px;text-shadow: 1px 1px 1px #000;
	text-align:center;
}
.video-overlay h1 span {
	font-size: 1.2rem; font-family: font2; font-weight: 500; color: #fff; text-transform: capitalize; letter-spacing: 1px;  
}
.video-overlay h1 i {
	font-family: font4; letter-spacing: 3px; font-weight: 500; font-size: 40px; color: #9B3639;
}
.video-overlay h3 {
	font-family: font4;
    letter-spacing: 1px;
    font-size: 1.2rem;
    text-transform: uppercase; text-shadow: 1px 1px 1px #000;
    color: #fff;
text-align: center;
}
.video-overlay h3 span {
	color: #dd0301;
}
.video-overlay h4 {
	padding: 22px; border-radius: 10px; color: #fff; font-size: 1.1rem; letter-spacing: 2px; width: fit-content;
	background: #0d5993; text-align: center; font-family: font3; font-weight: 600; text-transform: uppercase;
}
.video-overlay h4:hover {
	box-shadow: 0px 0px 0px 15px #0d5993;  border-radius: 0px;
}
.video-overlay p {
	font-size: 1rem; line-height: 23px; font-family: font3; 
	letter-spacing: 1px; color: #fff; padding: 15px  5px 15px  5px;   text-shadow: 1px 1px 1px #000;
	text-align:center;
}
.video-overlay .boxer1 {
	padding: 25px 5px; 
}
.video-overlay .boxer2 {
	padding: 15px; 
}
.home1 {
	padding: 75px 15px 75px 15px; background: #a3cff024;  text-align: center;
}
.home1 .pusher {
	--bs-gutter-x: -96px;
}
.home1 .pad {
	padding: 75px 5px 75px 5px;     /*background: linear-gradient(to right, #0000006e, #0000006e), url(/img/homepage/grid-4.png);*/
    background-size: 15%;
    background-color: #0009;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%; border-right: 2px solid #fff; height: 300px; width: 300px;
				display: none;
}
.home1 .pad:hover {
border-radius: 100%; background: #000; margin-top: -50px; transition: .7s; box-shadow: 10px -10px 0px 0px #f9f9f9; transform: rotate(360deg);

}
.home1 .pad:hover h3 {
	color: #fff;
}
.home1 .pad:hover i {
	color: #fff;
}
.home1 .pad2 {
	padding: 75px 15px 75px 15px;     /*background: linear-gradient(to right, #0000006e, #0000006e), url(/img/homepage/grid-4.png);*/
    background-size: 15%;
    background-color: #0009;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%; border: none; height: 300px; width: 300px;
				display: none;

}
.home1 .pad2:hover {
border-radius: 100%;background: #000; margin-top: -50px; transition: .7s; box-shadow: 10px -10px 0px 0px #f9f9f9; transform: rotate(360deg);
}
.home1 .pad2:hover h3 {
	color: #fff;
}
.home1 .pad2:hover i {
	color: #fff;
}
.home1 .cawntent {
	padding: 75px 0px 75px 0px;
}
.home1 h2 {
	font-family: font4; font-size: 35px; letter-spacing: 1px; color: #000;
}
.home1 h3 {
	font-family: 'font3'; font-size: 25px; text-align: center; font-weight: 500; color: #fff;
}
.home1 p {
	font-size: 20px; font-family: 'font3'; font-weight: 500; text-align: center; color: rgb(45, 45, 45);
}
.home1 span {
	color: rgb(83,82,82);
}

.home1 i {
	font-size: 50px; color: #fff; margin-bottom: 25px; text-align: center;
}

.home1 img {
	max-width: 100%; box-shadow: -15px -15px 0px 0px #000; border: 5px double  #fff;
}


.home2 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/grid-4.png);
    background-size: 15%; padding: 40px 0px 40px 0px; background-color: #000;
    background-repeat: repeat; background-attachment: fixed;
    height: 100%; color: #fff;
}

.home2 .residential {
	 background: #000;    box-shadow: -15px -15px 0px 0px #282828;
    border: 3px solid #fff;
}

.home2 .commercial {
	 background: #000;    box-shadow: 15px -15px 0px 0px #282828;
    border: 3px solid #fff;
}

.home2 .hvac-content {
	padding: 50px 15px 00px 15px;
}

.home2 h3 {
	font-family: font4; font-size: 30px;
}
.home2 p {
	font-size: 20px; font-family: 'font3'; font-weight: 500; 
}

.home2 img {
	border-right: 2px solid #fff; box-shadow: 0px 0px 10px 1px #000;
}

.home3 {
 color: #000; 
	
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/black-grid-25.png);
    background-size: 15%;
    padding: 50px 0px 35px 0px;
    background-color: #fff;
	text-align: center;
}

.home3 h2 {
	font-family: font2; font-size: 20px; line-height: 50px;
}

.home3 h2 span {
	font-size: 1.2rem;
}

.home3 h3 {
	font-family: font4; letter-spacing: 1px; font-size: 20px;
}
.home3 p {
	font-size: 20px; font-family: 'font3'; font-weight: 500; 
}

.home3 mark {
	padding: 25px 5px; border-radius: 10px; font-family: font3; font-size: 20px; background: #fff; border: 2px solid #000;
}

.home3 .bawks {
    padding: 35px 10px 35px 10px;
    margin-top: 50px;
    border: 2px solid #000;
    background: #0000001a;
    box-shadow: 5px -5px 0px 0px #000;
}


.home3 .bawks2 {
	padding: 15px; margin: 10px  0px 10px -0px; border: 2px solid #000; background: #0000001a;
}

.home3 .bawks2:hover {
	background: #000; color: #fff; cursor: pointer;
}


.hvac-modal-left {
    flex: 1;
    padding-right:  0px;
}

.hvac-modal-box {
    background: #fff;
    display: flex;
    max-width: 900px;
    width: 100%;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    flex-direction: column;
}
.hvac-modal-right h2 {
    font-family: font2;
    font-size: 1.3rem;;
    margin-bottom: 10px;
}






.home4 { 
	position: relative; background: #fff; text-align: center;
}

.home4 .maintenance-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/hvac-maintenance-2.jpg);
    background-size: cover;  position: relative;
    background-repeat: no-repeat; 
    height: 100%;
}
.home4 .maintenance-content {
	padding:  50px 15px 50px 15px;
}

.home4 h3 {
	font-family: font4; font-size: 2rem;
}

.home4 h4 {
	font-family: font3; font-size: 1.2rem; line-height: 35px;
}

.home4 p {
	font-size: 20px; font-family: 'font3'; font-weight: 500; 
}



.heating-service-cards {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/grid-4.png);
    background-size: 15%;
    padding: 50px 0px 200px 0px;
    background-color: #f06362;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%;
}

.card {
    position: relative;
    background: #fff;
    border: 2px solid transparent;
    width: 100%;
    left: 0;
    padding: 30px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}




.home-heat {
    color: #dd0301;
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/red-grid-25.png);
    background-size: 15%;
    padding: 50px 0px  50px 0px;
    background-color: #fff;
    text-align: center;
}
.home-heat .bawks2 {
    padding: 15px;
    margin: 10px 0px 10px -0px;
    border: 2px solid #dd0301;
    background: #fff;
    color: #dd0301;
}

.home-heat .bawks {
    padding: 25px 10px 25px 10px;
    margin-top: 20px;
    border: 2px solid #dd0301;
    background: #dd030117;
    box-shadow:  5px -5px 0px 0px #dd0301;
}
.heating-modal-box {
    background: #fff;
    display: flex;
    max-width: 900px;
    flex-direction: column;
    width: 100%;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}
.heating-modal-right h2 {
    font-family: font2;
    font-size: 1.2rem;
    margin-bottom: 10px;
}





.home-faqs {
	background: #d5d5d5; 
}

.home-faqs h4 {
font-family: font2;
    font-size: 2rem;
    color: #fff;
    padding: 35px;
    text-shadow: 0px 0px 5px #dd0301;
				text-align:center;
}

.home-faqs .faq-image {
		background: linear-gradient(to right, #00000069, #00000069), url(/img/homepage/hvac-01.jpg);
    background-size: cover; position: relative;
    background-repeat: no-repeat; 
    height: 500px;  margin-right: -0px; margin-left: 0px;
}

/* Tabs styling */
#faqTab .nav-link {
  font-weight: 500; font-family: font3; font-size: 20px;
  color: #0e66a5; width: 100%; border-radius: 0px; text-align: left;

  transition: background-color 0.3s, color 0.3s;
}
#faqTab .nav-link.active {
  background-color: #0e66a5;
  color: #fff;
}
#faqTab .nav-link:hover {
  background-color: #e0effa;
  color: #0e66a5;
}


.nav-tabs {
	background: #fff; display: block; position: relative; left: 0%; width: 100%; padding: 30px 10px 30px 10px; 	border: none;
}
.nav-tabs li {
	list-style: none;
}
.nav-tabs button {
	width: 100%;
}
/* Tab content padding */
.tab-pane {
  padding: 100px 20px;
  background-color: #fff;
     	border: none; height: 100%;
  border-radius: 0px;
}

.tab-content {
	width: 100%; height: 100%;
}

/* Accordion headers */
.accordion-button {
  font-weight: 600;
  color: #333;
  background-color: #fff;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}

.accordion-button:not(.collapsed) {
  background-color: #0e66a5;
  color: #fff;
}

.accordion-button::after {
  filter: brightness(0.5);
}

.accordion-body {
  font-size: 15px;
  color: #555;
  background-color: #fff;
  line-height: 1.6;
  border-top: 1px solid #ddd;
  padding: 10px;
}

/* Section headings */
#cooling-faq-title,
#heating-faq-title,
#hvac-faq-title {
  font-size: 22px;
  font-weight: bold;
  color: #0e66a5;
  margin-bottom: 20px;
  text-align: center;
}


.faq-section {
  padding: 60px 10px 60px 10px;
  background: #f8f9fa;
}

.faq-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0e66a5;
  font-weight: bold;
  text-align: center;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: #fff;
  font-weight: 600;
  color: #333;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #0e66a5;
  color: #fff;
}

.accordion-body {
  font-size: 14px;
  color: #555;
  padding: 20px;
  line-height: 1.6;
}



.home-cool .bawks2 {
    padding: 15px;
    border: 2px solid #0d5993;
    background: #fff;
    margin: 10px 0px 10px -0px;
    color: #0d5993;
}
.home-cool .bawks {
    padding: 20px;
    margin-top: 40px;
    border: 2px solid #0d5993;
    background: #0d59932b;
    box-shadow: 5px -5px 0px 0px #0d5993;
}

.cooling-modal-box {
    background: #fff;
    display: flex;
				flex-direction:column;
    max-width: 900px;
    width: 100%;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}





.intro-section {
    flex: 1;
    background: linear-gradient(to right, #ffffffd6, #ffffffd6), url(/img/homepage/black-grid-75.png);
    background-size: 15%;
    background-color: #ffffffba;
    text-align: center;
    background-repeat: repeat;
    color: #000000;
    padding: 50px;
    height: 100%;
    min-width: auto;
}









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

/**** About Section ****/
.about-intro {
		background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/about-hvac-1.jpg);
    background-size: cover; padding: 100px 0px 100px 0px; background-position: center bottom;
    background-repeat: no-repeat; height: 100%; background-attachment: fixed;
}

.about-intro .intro-content {
  padding: 50px 10px;
  background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/black-grid-75.png);
  background-size: 15%;
  background-attachment: fixed;
  background-color: #fff !important;
  border: 2px solid #6d827b; 
  animation: boxShadowCycle 6s infinite ease-in-out;
		text-align:center;
}
 

.about-intro .intro-content2 {
	padding: 25px 5px;  background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/red-grid-75.png);
    background-size: 15%; background-attachment: fixed;
		background-color: #fff !important; box-shadow: 10px -10px 0px 0px #ed3b3b; border: 1px solid #dd0301; margin: 15px 0px 15px 0px;
}

.about-intro .intro-content3 {
	padding: 25px 5px;  background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%; background-attachment: fixed;
		background-color: #fff !important; box-shadow: 10px -10px 0px 0px #419fe2; border: 1px solid #0d5993; margin: 15px 0px 15px 0px;
}

.about-intro .intro-content4 {
	padding: 25px 5px;  background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/black-grid-75.png);
    background-size: 15%; background-attachment: fixed;
		background-color: #fff !important;  box-shadow: 10px -10px 0px 0px #282828; border: 1px solid #000; margin: 15px 0px 15px 0px;
}

.about-intro h1 {
	font-family: font2; font-size: 1.35rem; line-height: 50px; color: #444;
}

.about-intro h1 span {
	font-family: font4; font-size: 1.5rem; color: #000; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.about-intro h1 i {
	font-family: font4; letter-spacing: 3px; font-size: 2rem; color: #736c45; font-weight: 500;
}

.about-intro h3 {
	font-family: font3; font-size: 1.3rem; text-align: center; color: #000;
}

.about-intro p {
	font-size: 17px; font-family: 'font3'; font-weight: 500; letter-spacing: 1px; line-height: 30px;
}

.about-history {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/grid-4.png);
    background-size: 15%;
    background-color: #f06362;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%;
}
.about-history .container {
	background-color: #fff !important;
    background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/red-grid-75.png);
    background-size: 15%; background-attachment: fixed; padding: 100px 10px 50px 10px;         text-align: center;
}
.about-history h2 {
	font-family: font2; font-size: 2rem; margin-bottom: 20px; line-height: 45px; margin-left: 0px;
}


.about-history h2 span {
	font-family: font4; font-size: 2.2rem; color: #dd0301; font-weight: 600;letter-spacing: 1px; text-transform: uppercase;
}

.about-history h2 i {
	font-family: font4; letter-spacing: 2px; color: #736c45; font-weight: 500;
}

.about-history h3 {
	font-family: font2; font-size: 2rem; color: #00; margin-bottom: 50px;
}

.about-history p {
	font-size: 17px; font-family: 'font3'; font-weight: 500; letter-spacing: 1px; line-height: 30px;
}
.about-history p i {
	font-weight: 600;
}
.about-history .history-content {
	padding: 50px 15px 50px 15px; 
}



.about-history .history-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/history-hvac-2.jpg);
    background-size: cover; /*border-top-left-radius: 15px; border-bottom-left-radius: 15px;*/
    background-repeat: no-repeat; height: 100%; box-shadow: -10px -10px 0px 0px #dd0301; border: 2px solid #000; border-right: none;
}

.about-expertise {
	padding: 50px 10px 50px 10px; 	background-color: #fff !important;
    background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%; background-attachment: fixed;
}

.about-expertise h3 {
	font-family: font3; font-size: 1.3rem;
}

.about-expertise p {
	font-size: 1rem; font-family: 'font3'; font-weight: 500; letter-spacing: 1px; line-height: 30px;
}


.about-expertise .about-card-1 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/repairs-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px 6px;
    background-repeat: no-repeat; height: 100%; background-position: 50% 50%;
}

.about-expertise .about-card-2 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/install-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px 6px;
    background-repeat: no-repeat; height: 100%; background-position: 50% 50%;
}

.about-expertise .about-card-3 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/replace-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px 6px;
    background-repeat: no-repeat; height: 100%; background-position: 50% 50%;
}

.about-expertise .about-card-4 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/maintenance-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px 6px;
    background-repeat: no-repeat; height: 100%; background-position: 50% 50%;
} 

.about-expertise .about-card-5 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/estimate-2.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px 6px;
    background-repeat: no-repeat; height: 100%; background-position: 50% 50%;
}

.about-expertise .about-card-6 {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/about/emergency-1.jpg);
    background-size: cover;  border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px; padding: 50px 6px;
    background-repeat: no-repeat; height: 100%; background-position: 50% 50%;
}

.about-expertise {
      padding: 100px 20px;
     background-color: #fff !important;
    background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%; background-attachment: fixed;
    }
.about-card-1 { background-image: url(/img/about/repair-1.jpg); }
.about-card-2 { background-image: url(/img/about/install-1.jpg); }
.about-card-3 { background-image: url(/img/about/replace-1.jpg); }
.about-card-4 { background-image: url(/img/about/maintenance-1.jpg); }
.about-card-5 { background-image: url(/img/about/estimate-2.jpg); }
.about-card-6 { background-image: url(/img/about/emergency-1.jpg); }

.flip-card {
    perspective: 500px;
    position: relative;
    overflow: hidden;
    /* border-radius: 15px; */
    width: auto;
    margin-bottom: 30px;
    left: 0;
    background: #eee;
    border: 5px solid transparent;
}
.flip-card-back {
    background: #fff;
    color: #000;
    transform: rotateY(180deg);
    padding: 30px;
    box-sizing: border-box;
    font-family: font2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-choose-us {
    padding: 60px 10px;
    background: linear-gradient(to right, rgb(255 255 255 / 51%), rgb(255 255 255 / 53%)), url(/img/about/hvac-choose-1.jpg) center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}



.service-start {
	padding: 140px 10px 60px 10px;     background-image: linear-gradient(#ed1d26, #ed1d267d), url(/img/homepage/tr-1.png); color: #fff;
}

.service-start h1 {
	font-family: font3; font-size: 2rem;
	
}
.service-start h2 {
	font-family: font2; font-size: 1.3rem; padding: 10px; text-align: center; color: #ed1d26;
}
.service-start h2:hover {
	color: #fff; background: #ed1d26; border-radius: 10px; font-weight: 600;
}
.service-start  p {
	font-family: Atlassian Sans; font-size: 1rem; line-height: 35px;
}

.service-start .intro-content {
}
.service-start .intro-legend {
	background: #fff; padding: 25px 5px; border-radius: 15px;
}

.service-hub {
	position: relative; padding: 50px 0px 50px 0px; background: #f5f5f5;
}
.service-hub img {

	max-width: 100%  !important;
}
.service-hub .link-card {
    background: #fff;
    border: 2px solid #ed1d26;
    height: auto;
    position: relative;
    /* height: 650px; */
    height: auto;
    margin: 25px 0px 25px 0px;
    /* transform: translateX(300px); */
    transition: transform 1.5s, opacity 1.5s, box-shadow 1s, background-color 0.5s;
    border-radius: 0.8rem;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-hub .link-card h3 {
	font-family: font3; 
	color: #fff;
	font-size:1.2rem;
}

.service-hub .link-card img {
	height: 325px; width: 100%;
}
.service-hub .link-card:hover {
	 background: #ed1d26; color: #fff;
}

.service-hub .link-card:hover h2 {
	font-family: font3; 
	color: #fff;
}

.service-hub .link-card:hover p {
	color: #fff;
}

.service-hub .link-card:hover mark {
	display: block;
}



.service-hub .link-card .card-data{
	position: absolute;
	display: flex;
	flex-direction: column; 
	justify-content: center;
	align-items: center; 
	
	
	bottom: -8rem;
	width: 100%;
	height: 75px; ; 
    left: 0%;
    transform: translate(-50%, -50%);
	border: 2px solid white;
	border-radius: 0.8rem;
	background: #0d5993;
	padding: 20px;
	box-shadow: 1px 1px 8px black;; 
	margin-inline: auto; 	
	/*opacity: 0;*/
	transform: translateY(100%);
		transition: 1s;
		
		
		color: white;
		font-family: 'font3'; 

}

.service-hub .link-card:hover .card-data{
	opacity: 1;
	transform: translateY(-0%);
	animation: show-data 1s forwards ;
	
}
.service-hub .link-card:hover {
	animation: remove-overflow 1s forwards ;
}


.service-hub .link-card:not(:hover) {
	animation: show-overflow 1s forwards ;
}

.service-hub .link-card:not(:hover) .card-data{
	animation: remove-data 1s forwards ;
}

.service-hub  p {
    font-family: Atlassian Sans;
    font-size: 17px;
    line-height: 35px;
    text-align: center;
    margin: 0px 10px 0px 10px;
}






.hvac-header {
    background: linear-gradient(to right, #ffffffd9, #ffffffd9), url(/img/services/hvac-services-01.jpg) no-repeat;
    background-size: cover;
    height: 100%;
    padding: 120px 10px 120px 10px;
    background-attachment: fixed;
    background-position: center center;
}

.hvac-header h1 {
    font-size: 2.1rem;
    text-align: center;
    text-transform: uppercase;
    font-family: font4;
    letter-spacing: 1px;
    line-height: 40px;
    color: #0d5993;
}
.hvac-header h4 {
    padding: 15px;
    background: #000;
    color: #fff;
    font-family: monospace;
    border-radius: 6px;
    font-size: 15px;
    margin-top: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    margin-left: 0;
}
.hvac-overview h2 {
    font-family: font3;
    font-size: 45px;
    letter-spacing: 2px;
    color: #fff;
    padding: 35px;
    width: 100%;
    background: #000;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    border-radius: 15px;
}
.hvac-overview h4 {
    font-family: 'font3';
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 15px;
    position: relative;
    margin-top: 0;
    margin-bottom: 20px;
}

.hvac-service-card1, .hvac-service-card2, .hvac-service-card3, .hvac-service-card4 {
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    height: auto;
    margin: 15px;
    position: relative;
    min-height: 300px;
}
.hvac-service-card1 h3, .hvac-service-card2 h3, .hvac-service-card3 h3, .hvac-service-card4 h3 {
    font-family: font3;
    letter-spacing: 2px;
    color: #fff;
    font-size: 1.5rem;
    background: #0d5993;
    text-align: center;
    margin-left: 0;
    margin-top: 35px;
    width: 100%;
    padding: 15px 10px 15px 0px;
    position: relative;
    transform: none;
}
.hvac-service-card1:hover h3, .hvac-service-card2:hover h3, .hvac-service-card3:hover h3, .hvac-service-card4:hover h3 {
    transform: rotate(0deg);
    margin: 0px;
    font-size: 30px;
    width: 90%;
    background: #1E82C9;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 10px -7px 0px 0px #fff9;
}
.hvac-service-card1:hover p, .hvac-service-card2:hover p, .hvac-service-card3:hover p, .hvac-service-card4:hover p {
    display: block;
    text-align: center;
    line-height: 20px;
    margin: -15px 10px 0px 10px;
}


.hvac-options .residential-hvac .residential-content {
    padding: 50px 10px 50px 10px;
}
.hvac-options .residential-hvac .residential-image {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/home-cooler-1.jpg) no-repeat;
    background-size: cover;
    border: 5px solid #dd0301;
    border-left: 0px;
    border-top: 0px;
    border-bottom-right-radius: 0px;
    height: 300px;
}
.hvac-options .residential-hvac .residential-image2 {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/commercial-cooling-01.jpg) no-repeat;
    background-size: cover;
    border: 5px solid #dd0301;
    border-left: 0px;
    border-top: 0px;
    border-bottom-right-radius: 0;
    height: 300px;
}
.hvac-options .commercial-hvac .commercial-content {
    padding: 50px 10px 50px 10px;
}
.hvac-options .commercial-hvac .commercial-image {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/home-heater-1.jpg) no-repeat;
    background-size: cover;
    border-top-left-radius: 0px;
    height: 300px;
    border: 5px solid #dd0301;
    border-right: 0px;
    border-bottom: 0px;
}
.hvac-options .commercial-hvac .commercial-image2 {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/commercial-heating-01.jpg) no-repeat;
    background-size: cover;
    border-top-left-radius: 0;
    height: 300px;
    border: 5px solid #dd0301;
    border-right: 0px;
    border-bottom: 0px;
}
.hvac-options .container {
    border: 5px solid #0d5993;
    padding: 0px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}




.details-section {
    padding: 50px 20px;
    background: linear-gradient(to right, #ffffffad, #ffffffad), url(/img/services/hartford-ct.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.details-section h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 2.2rem;
    color: #000;
    font-weight: 600;
    line-height: 45px;
}

.details-section h3 {
    font-family: font4;
    letter-spacing: 2px;
    font-size: 1.3rem;
    padding: 11px;
    color: #000;
    width: fit-content;
}



.company-info {
    background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%;
    background-attachment: fixed;
    background-color: #fff !important;
    color: #0d5993;
    padding: 50px 10px 50px 10px;
				text-align:center;
}

.company-info p {
    font-family: font3;
    line-height: 35px;
    font-size: 1.25rem;
    margin-left:  0px;
}

.company-info mark {
    padding: 25px 5px;
    border-radius: 15px;
    font-size: 20px;
    font-family: font2;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #0d5993;
    color: #fff;
    position: relative;
				display: inline-flex; 
    left: -0%;
}
.company-info mark  i{
	display:none;
}

.refrigeration-intro {
    padding: 130px 0px 130px 0px;
    background: linear-gradient(to right, #ffffff66, #ffffff66), url(/img/services/refrigeration-01.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
}

.refrigeration-intro .intro-legend {
    padding: 25px;
    background: #0d5993;
    margin-left: 0;
    border-radius: 15px;
    margin-top: 0;
    margin-right: 0;
}

.refrigeration-benefit-main {
    background: #fff;
    padding: 100px 10px 100px 10px;
}
.refrigeration-benefit-main h2 {
    font-size: 2rem;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
    padding-bottom: 50px;
    margin-left: 0;
				text-align:center;
}
.refrigeration-benefit-main h2 span {
    color: #0d5993;
    font-size: 2.2rem;
}
.refrigeration-tab-buttons {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}
.refrigeration-tab-content ul {
    margin: 0;
    list-style: disc;
}
.refrigeration-tab-contents {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.service-splitter h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 2rem;
    text-align: center;
    padding: 35px;
    background: #0d5993;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 25px;
}
.refrigeration-services {
    background: linear-gradient(to right, #ffffff8f, #ffffff8f), url(/img/homepage/blue-grid-25.png) no-repeat;
    background-size: 15%;
    background-attachment: fixed;
    background-position: top;
    padding: 75px 0px 80px 0px;
    text-align: center;
    background-repeat: repeat;
}

.refrigeration-choose-berkshire {
    background: linear-gradient(to right, #000000a6, #000000b8), url(/img/services/refrigeration-man.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 50px 10px 50px 10px;
}
.refrigeration-choose-berkshire h3 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 15px;
}
.refrigeration-choose-berkshire  .choose-reasons {
    text-align: center;
    position: relative;
    left: 0;
    top: 0%;
    padding: 35px 25px 25px 25px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: auto;
}
.refrigeration-choose-berkshire  .choose-intro {
    padding: 25px 5px;
    background: #0d5993;
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
				        text-align: center;
}



.maintenance-intro  h1 strong {
    font-size: 2.5rem;
    color: #0d5993;
    font-weight: 500;
    text-shadow: 2px 1px 1px #fff;
    font-family: font4;
}

.maintenance-intro .intro-legend {
    padding: 25px;
    background: #0d5993;
    margin-left: 0;
    border-radius: 15px;
    margin-top: 0;
    margin-right: 0;
}

.maintenance-benefit-main {
    background: #fff;
    padding: 100px 10px 100px 10px;
}
.maintenance-benefit-main h2 {
    font-size: 2.3rem;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
    padding-bottom: 50px;
    margin-left: 0;
				text-align:center;
}
.maintenance-benefit-main h2 span {
    color: #0d5993;
    font-size: 2.5rem;
}

.maintenance-tab-contents {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.maintenance-tab-content ul {
    margin: 0;
    list-style: disc;
}

.maintenance-services {
    background: linear-gradient(to right, #ffffff8f, #ffffff8f), url(/img/homepage/blue-grid-25.png) no-repeat;
    background-size: 15%;
    background-attachment: fixed;
    background-position: top;
    padding: 175px 0px 175px 0px;
    text-align: center;
    background-repeat: repeat;
}
.maintenance-services h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 20px;
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
}

.maintenance-choose-berkshire {
    background: linear-gradient(to right, #000000ad, #000000ab), url(/img/services/maintenance-call.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 50px 10px 50px 10px;
				text-align:center;
}
.maintenance-choose-berkshire h3 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 15px;
    text-shadow: 1px 1px 1px #000;
}
.maintenance-choose-berkshire  .choose-reasons {
    text-align: center;
    position: relative;
    left: 0;
    top: 0%;
    padding: 35px 25px 25px 25px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: 155px;
}
.maintenance-choose-berkshire  .choose-intro {
    padding: 15px 5px;
    background: #0d5993;
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
				        text-align: center;
}







.emergency-intro {
    padding: 150px 0px 150px 0px;
    background: linear-gradient(to right, #ffffff66, #ffffff66), url(/img/services/emergency-hvac-01.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
}
.emergency-intro  h1 strong {
    font-size: 3rem;
    color: #0d5993;
    font-weight: 500;
    text-shadow: 2px 1px 1px #fff;
    font-family: font4;
}
.emergency-intro .intro-legend {
    padding: 25px;
    background: #0d5993;
    margin-left: 0;
    border-radius: 15px;
    margin-top: 0;
    margin-right: 0;
}
.emergency-benefit-main {
    background: #fff;
    padding: 100px 10px 100px 10px;
}
.emergency-benefit-main h2 {
    font-size: 2.4rem;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
    padding-bottom: 50px;
    margin-left: 0;
				text-align:center;
}
.emergency-benefit-main h2 span {
    color: #0d5993;
    font-size: 2.5rem;
}
.emergency-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
    flex-direction: column;
}
.emergency-tab-content ul {
    margin: 0;
    list-style: disc;
}
.emergency-tab-contents {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.emergency-services h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 20px;
    text-align: center;
    margin-left: 0;
    margin-top: 0;
}
.emergency-choose-berkshire {
    background: linear-gradient(to right, #00000075, #000000b5), url(/img/services/emergency-call-2.jpg) no-repeat;
    background-size: cover;
    background-position: 55%;
    height: auto;
    padding: 50px 10px  50px 10px;
}
.emergency-choose-berkshire h3 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
    text-shadow: 1px 1px 1px #000;
}
.emergency-choose-berkshire  .choose-reasons {
    text-align: center;
    position: relative;
    left: 0;
    top: 0%;
    padding: 35px 5px 25px 5px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: 155px;
}
.emergency-choose-berkshire  .choose-intro {
    text-align: center;
    padding: 45px 10px;
    background: #0d5993;
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
}



.ac-intro {
    padding: 120px 0px 120px 0px;
    background: linear-gradient(to right, #ffffff66, #ffffff66), url(/img/services/ac-01.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
}
.ac-intro  h1 strong {
    font-size: 2rem;
    color: #0d5993;
    font-weight: 500;
    text-shadow: 2px 1px 1px #fff;
    font-family: font4;
}
.ac-intro .intro-legend {
    padding: 25px;
    background: #0d5993;
    margin-left: 0;
    border-radius: 15px;
    margin-top: 0;
    margin-right: 0;
}
.ac-benefit-main {
    background: #fff;
    padding: 100px 10px 100px 10px;
}
.ac-benefit-main h2 {
    font-size: 2.4rem;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
    padding-bottom: 50px; text-align: center;
    margin-left: 0;
}
.ac-benefit-main h2 span {
    color: #0d5993;
    font-size: 2rem;
}
.ac-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
    flex-direction: column;
}
.ac-tab-content p {
    font-family: font2;
    font-size: 1rem;
    line-height: 35px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}
.ac-tab-content ul {
    margin: 0;
    list-style: disc;
}
.ac-tab-content li {
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-family: font3;
    letter-spacing: 1px;
    color: #555;
}
.ac-services h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 20px;
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
}
.ac-choose-berkshire {
    background: linear-gradient(to right, #00000080, #000000b8), url(/img/services/ac-call.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 110px 10px 110px 10px;
    text-align: center;
}
.ac-choose-berkshire h3 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 20px;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
}
.ac-choose-berkshire  .choose-reasons {
    text-align: center;
    position: relative;
    left: 0;
    top: 0%;
    padding: 35px 25px 25px 25px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: 155px;
}
.ac-choose-berkshire  .choose-intro {
    padding: 40px 10px;
    background: #0d5993;
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
}






.ductless-ac-intro {
    padding: 150px 0px 150px 0px;
    background: linear-gradient(to right, #ffffff66, #ffffff66), url(/img/services/ductless-ac-01.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
}
.ductless-ac-intro  h1 strong {
    font-size: 2.3rem;
    color: #0d5993;
    font-weight: 500;
    text-shadow: 2px 1px 1px #fff;
    font-family: font4;
}
.ductless-ac-intro .intro-legend {
    padding: 25px;
    background: #0d5993;
    margin-left: 0;
    border-radius: 15px;
    margin-top: 0;
    margin-right: 0;
}
.ductless-ac-benefit-main {
    background: #fff;
    padding: 100px 10px 120px 10px;
}
.ductless-ac-benefit-main h2 {
    font-size: 2.5rem;
    color: #000;
    font-family: font4;
    letter-spacing: 3px;
    padding-bottom: 50px;
    margin-left: 0;
				text-align:center;
}
.ductless-ac-benefit-main h2 span {
    color: #0d5993;
    font-size: 2.5rem;
}
.ductless-ac-tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
    flex-direction: column;
}
.ductless-ac-tab-contents {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.ductless-ac-tab-content ul {
    margin: 0;
    list-style: disc;
}
.ductless-ac-services h2 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 20px;
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
}

.ductless-ac-choose-berkshire {
    background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/ac-lady.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 110px 10px 110px 10px;
}
.ductless-ac-choose-berkshire h3 {
    font-family: font3;
    letter-spacing: 2px;
    font-size: 20px;
    color: #000;
    text-align: center;
    padding: 15px;
    margin-top: 15px;
}
.ductless-ac-choose-berkshire .choose-reasons {
    text-align: center;
    position: relative;
    left: 0;
    top: 0%;
    padding: 35px 25px 25px 25px;
    background: #fff9;
    width: 100%;
    color: #0d5993;
    border-radius: 10px;
    height: 155px;
}

.ductless-ac-choose-berkshire .choose-intro {
    text-align: center;
    padding: 50px 10px;
    background: #0d5993;
    border-radius: 35px;
    margin-left: 0;
    margin-right: 0;
}

 
	.refrigeration-intro  h1 strong {
    font-size: 1.5rem;
    color: #0d5993;
    font-weight: 500;
    text-shadow: 2px 1px 1px #fff;
    font-family: font4;
}
	
	
	
/**** Services Section ****/


.faq-content {
    background: none;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    height: 100%;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ccc;
    transition: all 0.3s ease;
}

/**/

.faq-intro .faq-image {
    background: linear-gradient(to right, #00000000, #00000000), url(/img/services/hvac-faq.jpg) no-repeat;
    background-size: cover;
    height: 300px;
    margin-bottom: -58px;
}
.faq-intro .faq-content {
    padding: 110px 10px 110px 10px;
    position: relative;
    background: #fff;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    box-shadow: 0px 0px 15px 1px #000;
    height: auto;
				text-align:center;
}





/**** Areas We Service Section ****/

.location-start {
	background: linear-gradient(to right, #000000c7, #000000c7), url(/img/services/commercial-hvac-2.jpg);
    background-size: cover;
    position: relative; background-position: center center;
    background-repeat: no-repeat; color: #fff;
    height: 100%; padding: 160px 0px 90px 0px; text-align:center;
}

.location-start .location-legend {
	padding: 50px 15px; border: 2px solid #fff;
}

.location-start h1 {
	font-family: font4; font-size: 2rem; letter-spacing: 1px;
}

.location-start h3 {
	font-family: font3; font-weight: 600; font-size: 20px; line-height: 40px; color: #fff; letter-spacing: 1px; text-shadow: 1px 1px 1px #000;
}
.location-start p {
	font-family: font3; font-size: 20px; line-height: 35px;
}
.area:nth-child(odd) {
	padding: 125px 0 125px 0; background: rgb(255,255,255); text-align:center;
}
.area:nth-child(even) {
	padding: 125px 0 125px 0; background: rgb(245,245,245); text-align:center;
}
.area h2 {
	font-size: 2.5rem; font-family: font4; font-weight: 800; color: rgb(196,41,56);
}
.area h4 {
	font-size: 18px; font-family: font2; color: rgb(75,75,75); letter-spacing: 0px;
}
.area p {
	font-size: 17px; color: rgb(12,12,12); font-family: font3;
}
.area iframe {
	width: 100%; height: 400px; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);
}

.area .area-box1 {
	padding: 10px; border: 1px solid #000; text-align: center;
}

.area .area-box1 h3 {
	font-family: font3; font-weight: 600; color: #000;
}

.area .area-box1 p {
	font-size: 15px;
}

.area .area-box2 {
	padding: 10px; border: 1px solid #dd0301; text-align: center;
}


.area .area-box2 h3 {
	font-family: font3; font-weight: 600; color: #dd0301;
}

.area .area-box2 p {
	font-size: 15px;
}

.area .area-box3 {
	padding: 10px; border: 1px solid #0d5993; text-align: center;
}


.area .area-box3 h3 {
	font-family: font3; font-weight: 600; color: #0d5993;
}

.area .area-box3 p {
	font-size: 15px;
}


.location-map {
	padding: 125px 20px 0px 20px;
}

.location-intro {
	padding: 150px 0px 100px 0px;         background: linear-gradient(to right, #ffffffba, #ffffffba), url(/img/homepage/blue-grid-75.png);
    background-size: 15%;
    background-attachment: fixed;
    background-color: #fff !important;
    background-repeat: repeat;
}
.location-intro .spanner img {
    max-width: 100%;
    margin-left: 0px;
    margin-top: 15px;
}
.location-intro h1 {
	font-family: font2; font-size: 25px;
}
.location-intro h1 span {
	font-size: 20px;
}
.location-intro h1 strong {
	color: #0d5993; font-family: font4; font-size: 45px;
}
.location-intro h2 {
	font-family: font3; font-size: 25px; color: #0d5993;
}
.location-intro h4 {
  position: relative;
  font-family: font3;
  font-size: 20px;
  text-align: center;
  padding: 25px;
  background: #0d5993;
  margin: 10px 0;
  width: 100%;
  color: #fff;
  z-index: 1;
  overflow: hidden; /* ensures pseudo-elements don't spill out */
}

.location-intro h4::before {
  content: "\f6e3"; /* hammer icon */
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.1); /* subtle watermark effect */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  z-index: 0; /* behind the text */
  pointer-events: none;
}



.location-intro p {
	font-family: Atlassian Sans; font-size: 17px; line-height: 35px;
}
.location-intro img {
	max-width: 100%; margin-left: 0; margin-bottom: 30px;
}
.location-intro .location-content {
	padding: 75px 10px 50px 10px;    border: 2px solid #000;
    height: 100%;
				text-align:center;
}
.location-intro .location-services {
	padding: 25px 5px; 
}



/*FINANCING START*/

.financing-intro {
	padding: 95px 0px 95px 0px; background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/homepage/blue-grid-25.png) repeat;
    background-size: 15%; background-attachment: fixed;
    background-position: top;
}

.financing-intro .container {
	background: #fff; padding: 0px; border: 2px solid #0d5993;
}

.financing-intro .finance-intro {
	background: #fff; padding: 100px 15px;
	        text-align: center;
}

.financing-intro .finance-image {
	background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/services/hvac-financing-1.png) no-repeat;
    background-size: cover; height: 100%;
    background-position: top;
}

.financing-intro .square {
	padding: 15px; text-align: center; border: 3px dotted #0d5993; margin: 15px 0px 15px 0px; box-shadow: 0px 0px 0px 2px #0d5993;
}

.financing-intro .square p {
	line-height: 25px; font-size: 15px;
}

.financing-intro h1 {
	font-family: font2; font-size: 30px; margin: 15px 0px 25px 0px;
}

.financing-intro h1 span {
	font-family: font4; font-size: 2.5rem;;
}

.financing-intro h3 {
	font-family: font2; font-size: 20px; font-weight: 500; letter-spacing: 0px;
}

.financing-intro p {
	font-family: font3; font-size: 17px; line-height: 30px;
}

.financing-intro i {
	font-size: 2rem; color: #0d5993; margin: 10px 0px 10px 0px;
}


.finance-options {
	padding: 70px 20px 70px 20px; background: linear-gradient(to right, #000000bf, #000000bf), url(/img/services/hvac-financing-2.jpg) no-repeat;
    background-size: cover; height: auto; background-attachment: fixed;
}

.finance-options .finance-card {
	padding: 25px 15px 75px 15px; background: #fff0; border: 5px double #fff; color: #fff; height: auto;
}

.finance-options .finance-card:hover {
	background: #fff; color: #000; border: 5px double #dd0301;
}

.finance-options .finance-card:hover h2 {
	color: #dd0301; text-align: center;
}
.finance-options .finance-card:hover p {
	text-align: center;
}
.finance-options .finance-card:hover i {
	margin-left: 20px; font-size: 3rem; transition: 1s;
}

.finance-options .finance-card:hover h5 {
	display: block; transition: 2s;background: #dd0301; color: #fff; font-family: font4; font-size: 20px; text-transform: uppercase;

}

.finance-options h2 {
	font-family: font2; font-size: 25px; letter-spacing: 0px;color: #ffbbbb; text-shadow: 1px 1px 1px #000;
}

.finance-options h5 {
	padding: 20px 0px 20px 0px;  display: none;	position: relative;
}

.finance-options p {
	font-family: font3; font-size: 18px; line-height: 30px;
}

.finance-options i {
	font-size: 35px; color: #dd0301; padding: 25px 10px 25px 10px;
}

.finance-options li {
	font-family: font3; font-size: 16px; line-height: 35px;
}

/*FINANCING END*/

.review-intro .review-content {
    padding: 75px 15px;
    text-align: center;
}

/**** Gallery Section ****/
.gallery-page {
	padding: 125px 0 125px 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);
}

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

/**** Contact Section ****/
.contact-start .start-content {
    padding: 40px 25px 40px 25px;
    background: #fff;
    border: 5px solid #000;
    border-radius: 5px;
    animation: borderCycle 4s infinite linear;
    text-align: center;
}
.contact-start h1 {
    font-family: font4;
    letter-spacing: 1px;
    font-size: 2rem;
    animation: textColorCycle 4s infinite linear;
}
.mapper {
    padding-left: 0;
}
/**** 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;
}
.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);
}
.footer-section .upper-footer .spanner {
    margin-top: 15px;
}
/**** 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) {


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

}