:root{
  --navy:#0E2B57;
  --orange:rgba(255,165,0,.80);
  --bg2:rgba(255,255,255,.05);
  --bg: #FFFFFF;
  --text:#0b1220;
  --muted:#FFFFFF;
  --card:#f6f8fb;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
  --radius: 18px;
  --hdr1color: #FFFF00;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color:var(--text);  }
a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92vw); margin:0 auto; }
.container2{ width:min(1120px, 92vw); margin:0 auto; }

.RSBtn_Icons {
  width: 90%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  margin: 0 auto 8px auto;
}

.rsspacer1{
	position: relative;
	height: 15vh;
	width: 92vw;
	background: transparent;
}
.rsspacerdiv4{
	position: relative;
	height: clamp(20px,300vh,1000px);
	width: 92vw;
	background: transparent;
}
.skip-link{
  position:absolute; left:-999px; top:8px; background:#fff; padding:10px 12px; border-radius:10px; box-shadow:var(--shadow);
}
.skip-link:focus{ left:10px; z-index:9999; }

.site-header{
  position:fixed; top:0; left:0; right:0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14,43,87,.08);
  z-index: 50;
  transition: all 0.3s ease-out;
}
.site-header.scrolled{
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.header-inner{
  height: 76px;
  width:min(1120px, 92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap: 20px;
  transition: height 0.3s ease-out;
}
.site-header.scrolled .header-inner{
  height: 50px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.header-title{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.3px;
  transition: all 0.3s ease-out;
}
.site-header.scrolled .header-title{
  font-size: 1.1rem;
}
.brand-logo{ 
  display:block; 
  height:54px; 
  width:auto;
  transition: height 0.3s ease-out;
}
.site-header.scrolled .brand-logo{
  height: 40px;
}

.menu-btn{
  border: 1px solid rgba(14,43,87,.15);
  background: white;
  border-radius: 999px;
  height: 44px; width: 44px;
  display:grid; place-items:center;
  cursor:pointer;
}
.menu-btn:focus{ outline: 3px solid rgba(249,115,22,.35); outline-offset: 2px; }

.hamburger{
  width: 18px; height: 12px; position:relative; display:block;
}
.hamburger::before,
.hamburger::after,
.hamburger span{
  content:"";
  position:absolute; left:0; right:0;
  height:2px; background: var(--navy);
  border-radius: 2px;
}
.hamburger::before{ top:0; }
.hamburger::after{ bottom:0; }
.hamburger span{ top:5px; }

.site-main{
  padding-top: 40px; /* Header height */
  min-height: calc(100vh - 176px);
  background: rgba(255,255,255,.15);
}

/* Side menu */
.backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.35);
  z-index: 60;
}

.side-menu{
  position:fixed; top:0; right:0;
  height: auto; 
  width:min(360px, 88vw);
  background:white;
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform .22s ease;
  z-index: 70;
  display:flex; flex-direction:column;
  padding: 14px 14px 18px;
}
.side-menu.open{ transform: translateX(0); }

.side-menu-top{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 6px 6px;
}
.side-menu-title{ font-weight:700; color:var(--navy); letter-spacing:.2px; }
.menu-close{
  border:none; background:transparent; cursor:pointer; font-size:20px;
  width:44px; height:44px; border-radius:999px;
}
.menu-close:hover{ background: rgba(14,43,87,.06); }

.side-menu-nav{
  display:flex; flex-direction:column;
  gap: 6px;
  padding: 10px 6px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 70vh;
}
.nav-link{
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--navy);
  border: 1px solid rgba(14,43,87,.08);
  background: white;
}
.nav-link:hover{ background: rgba(14,43,87,.04); }

.cta-button{
  margin-top: 10px;
  display:block;
  text-align:center;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--orange);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(249,115,22,.25);
}
.cta-button:hover{ filter: brightness(.98); }

/* Page sections */
.hero{
 position: relative;
  padding: 0; /* Change from 44px 0 22px to 0 */
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

.hero .container {
  padding: 90px 0 2px; /* Move padding to container */
}

.hero-background{
  position: fixed;
  top: -50vh;
  left: 0;
  width: 100%;
  min-height: 250vh;
  background-image: url('../img/main-background.jpg');
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
}
.hero-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  z-index: 1;
}
.hero-grid{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:center;
}
.hero-grid-single{
  grid-template-columns: 1fr;
}
.hero-grid-single2{
  grid-template-columns: 1fr;
  max-width: 300px;
  z-index: 5;
  margin-top: 50px;
  margin-bottom: 90vh;

}
.h1{
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.05;
  color: var(--hdr1color);
  margin: 0 0 12px;
  text-align: center;
  text-shadow: 2px 2px #000000;
}
.lead{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 18px;
  text-align: center;
  text-shadow: 2px 2px #000000;
}
.button-row{
  display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid rgba(14,43,87,.14);
  background: rgba(255,255,255,.70);
  cursor:pointer;
}
.btn4{
  display: block; align-items:center; justify-content:center;
  position: relative;
  margin-left: auto; margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
  
  width: clamp(100px,56vw,300px);
  height: auto; 
  text-align: center;
  font-size: clamp(18px,2.5vw,24px);
  font-weight: 700;
  border: 1px solid rgba(14,43,87,.14);
  background: rgba(255,255,255,.70);
  cursor:pointer;
}
.btn4:hover{
	background: #0066cc; color: #ffffff;
}
.btn.primary{
  background: var(--orange);
  color:blue;
  border-color: transparent;
}
.btn:hover{ filter: brightness(.98); }

.card{
  background: var(--card);
  border: 1px solid rgba(14,43,870,.50);
  border-radius: var(--radius);
  padding: 18px;
}
.kpi{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.kpi .card{ background: rgba(255,255,255,.90); }
.kpi strong{ color: var(--navy); font-size: 1.1rem; }
.kpi span{ color: var(--muted); font-size: .92rem; }

.section{
  padding: 0;
  background-color: rgba(255,255,0,.90);
  background-color: transparent;
  margin: 0;
}

.section .container {
  padding: 28px 0 15px 0; /* Move padding to container */
}

.section-title{
  font-size: 1.4rem;
  padding: 0; /* Change from 28px 0 to 0 */
  background-color: rgba(255,255,0,.90);
  margin: 0;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.form{
  display:grid; gap: 12px;
}
.field label{ display:block; font-weight:600; color:var(--navy); margin-bottom:6px; }
.field input, .field select, .field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(14,43,87,.18);
  font: inherit;
}
.field textarea{ min-height: 120px; resize: vertical; }

.fixed-footer {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  min-height: 60px;
  max-height: 75px;
  background: white;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0px 15px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.fixed-footer.minimized {
  min-height: 52px;
  max-height: 58px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.fixed-footer.minimized .footer-container {
  top: -24px;
}

.footer-container {
  position: relative;
  top: -17px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 50px;
  display: grid;
  grid-template-rows: auto auto;
  gap: -30px;
  transition: all 0.3s ease-out;
}

.footer-row-top {
  display: grid;
  grid-template-columns: 85% 15%;
  align-items: center;
  gap: 10px;
}

.footer-row-bottom {
  position: relative;
  top: -18px;
  text-align: center;
  transition: all 0.3s ease-out;
}

.fixed-footer.minimized .footer-row-bottom {
  top: -22px;
}

.footer-message {
  padding-right: 15px;
}

.footer-main-text {
  font-size: 0.9em;
  color: #2d3748;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s ease-out;
}

.fixed-footer.minimized .footer-main-text {
  font-size: 0.75em;
  line-height: 1.2;
}

.footer-main-text strong {
  color: var(--orange);
  font-weight: 700;
}

.footer-arrow {
  position: relative;
  left: -15px;
  text-align: center;
  padding: 0 10px;
}

.footer-arrow a {
  display: inline-block;
  transition: transform 0.2s, opacity 0.3s;
}

.footer-arrow a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.clickhere-arrow {
  height: 150px;
  width: auto;
  display: block;
  transition: height 0.3s ease-out;
}

.fixed-footer.minimized .clickhere-arrow {
  height: 90px;
}

.footer-disclaimer-container {
  width: 100%;
}

.footer-disclaimer {
  font-size: 0.8em;
  color: #e53e3e;
  font-weight: 800;
  margin: 0;
  transition: all 0.3s ease-out;
}

.fixed-footer.minimized .footer-disclaimer {
  font-size: 0.55em;
  margin: 0;
}

/* Video trigger button */
.video-trigger{
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display:inline-grid;
  place-items:center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.video-trigger:hover{ background: rgba(14,43,87,.06); }
.video-trigger img:not(.RSBtn_Icons){ width: 44px; height: 44px; display:block; }

/* Video modal */
.video-modal[hidden]{ display:none; }
.video-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.video-modal-dialog{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 95vw;
  max-height: 95vh;
}
.video-modal-close{
  position: fixed;
  right: 15px;
  top: 6px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.video-modal-close:hover{ 
  background: rgba(255,255,255,1);
  transform: scale(1.05);
}

.video-modal-mute{
  position: fixed;
  right: 63px;
  top: 6px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.video-modal-mute:hover{ 
  background: rgba(255,255,255,1);
  transform: scale(1.05);
}

.video-modal-body{
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-body video{
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}



/* ============================================
   FAQ ACCORDION STYLES
   ============================================ */

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Intent Level (Level 1) */
.faq-intent {
  margin-bottom: 10px;
  border: 1px solid rgba(14,43,87,.20);
  border-radius: 8px;
  overflow: hidden;
}

.faq-intent-header {
  padding: 15px 20px;
  background: rgba(14,43,87,.90);
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-intent-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4em;
  font-weight: 400;
}

.faq-intent.open .faq-intent-header::after {
  content: '−';
}

.faq-intent-content {
  display: none;
  padding: 10px;
  background: rgba(255,255,255,.90);
}

.faq-intent.open .faq-intent-content {
  display: block;
}

/* Question Level (Level 2) */
.faq-question {
  margin-bottom: 8px;
  border: 1px solid rgba(14,43,87,.14);
  border-radius: 6px;
  overflow: hidden;
}

.faq-question-header {
  padding: 12px 16px;
  background: rgba(255,255,255,.70);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
}

.faq-question-header::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #0066cc;
}

.faq-question.open .faq-question-header::after {
  content: '−';
}

.faq-question-header:hover {
  background: #0066cc;
  color: #ffffff;
}

.faq-question-header:hover::after {
  color: #ffffff;
}

.faq-question-content {
  display: none;
  padding: 16px;
  background: #f9f9f9;
  border-top: 1px solid rgba(14,43,87,.10);
}

.faq-question.open .faq-question-content {
  display: block;
}

/* Answer styling */
.faq-answer {
  line-height: 1.6;
  color: #333;
}


/* FAQ Search Row */
.faq-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 90vw;
  min-width: 300px;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.faq-search-input {
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  padding: 12px 16px;
  font-size: clamp(16px, 2vw, 18px);
  border: 1px solid rgba(14,43,87,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.70);
}

.faq-search-input:focus {
  outline: none;
  border-color: #0066cc;
  background: rgba(255,255,255,.90);
}

.faq-home-btn {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-mic-btn {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-search-btn {
  min-width: 80px;
  max-width: 150px;
}





.abc{
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display:inline-grid;
  place-items:center;
  width: 56px;
  height: 56px;
  border-radius: 14px;	

display: block; align-items:center; justify-content:center;
  position: relative;
  margin-left: auto; margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
  
  width: clamp(100px,56vw,900px);
  height: auto; 
  text-align: center;
  font-size: clamp(18px,2.5vw,24px);
  font-weight: 700;
  border: 1px solid rgba(14,43,87,.14);
  background: rgba(255,255,255,.70);
  cursor:pointer;
  
    width: clamp(200px, 65vw, 300px); /* Larger min-width prevents side-by-side */
    margin-left: auto; margin-right: auto; /* Adjust centering for wider button */
 
 
}
.abc:hover{
	background: #0066cc; color: #ffffff;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .kpi{ grid-template-columns: 1fr; }
  .header-title{ font-size: 1.2rem; }
  .fixed-footer {
    min-height: 55px;
    max-height: 70px;
    padding: 0px 10px;
  }
  
  .footer-container {
    min-height: 45px;
    gap: -30px;
  }
  
  .footer-row-top {
    position: relative;
    top: -10px;
    left: 0px;
    grid-template-columns: 85% 15%;
    gap: 5px;
  }
  
  .footer-message {
    padding-right: 5px;
    font-size: 0.65em;
  }
  
  .footer-main-text {
    font-size: 0.85em;
    line-height: 1.5em;
    width: 80%;
  }
  
  .clickhere-arrow {
    position: relative;
    top: 10px;
    left: -25px;
    height: 85px;
  }
  
  .footer-disclaimer-container {
    position: relative;
    top: 0px;
    text-align: left;
  }
  
  .footer-disclaimer {
    position: relative;
    top: -20px;
    text-align: left;
    font-size: 0.20em;
  }
  
  .btn4 {
    width: clamp(200px, 65vw, 350px); /* Larger min-width prevents side-by-side */
    margin-left: auto; margin-right: auto; /* Adjust centering for wider button */
  }
}



/* ============================================
   FAQ PAGE SPECIFIC STYLES
   ============================================ */

/* Override padding for FAQ pages with fixed search div */
#faq-page-container {
  padding-top: 0;
}

/* Fixed Search Row */
.faq-search-row-fixed {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 40;
  background: #ffffcc;
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: top 0.3s ease-out;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Adjust fixed search position when header is scrolled */
.site-header.scrolled ~ .site-main .faq-search-row-fixed,
.site-header.scrolled ~ section .faq-search-row-fixed {
  top: 50px;
}

/* Spacer to push content below fixed search */
.faq-search-spacer {
  height: 160px;
}

/* Speaker button styling */
.faq-speaker-btn {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-speaker-btn.speaker-on {
  background: #28a745;
  color: #ffffff;
  border-color: #28a745;
}

/* Microphone button states */
.faq-mic-btn.mic-listening {
  background: #dc3545;
  color: #ffffff;
  border-color: #dc3545;
  animation: mic-pulse 1.5s ease-in-out infinite;
}

@keyframes mic-pulse {
  0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

/* Speaker button pulsing while playing */
.faq-question-speaker.speaker-playing {
  background: #28a745;
  color: #ffffff;
  animation: speaker-pulse 1.5s ease-in-out infinite;
}

/* Main speaker button pulsing while playing */
.faq-speaker-btn.speaker-playing {
  background: #28a745;
  color: #ffffff;
  border-color: #28a745;
  animation: speaker-pulse 1.5s ease-in-out infinite;
}

@keyframes speaker-pulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* Per-question speaker button */
.faq-question-speaker {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: rgba(14,43,87,.15);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.faq-question-speaker:hover {
  background: rgba(14,43,87,.3);
}

/* Override padding-right on FAQ question headers to make room for speaker button */
.faq-accordion .faq-question-header {
  padding-right: 85px;
}

/* Responsive adjustments for fixed search */
@media (max-width: 980px) {
  .faq-search-row-fixed {
    top: 76px;
    padding: 10px 15px;
  }
  
  .site-header.scrolled ~ .site-main .faq-search-row-fixed,
  .site-header.scrolled ~ section .faq-search-row-fixed {
    top: 50px;
  }
  
  .faq-search-spacer {
    height: 180px;
  }
  	.hero-grid-single2{

  		padding-left: 3vw;

	}
}


#hp-solar-savings-calc-container{
	height: auto;
}
#hp-solar-savings-calc{
  width: 98%; /* The image will take up 100% of its container's width */
  height: auto; /* Ensures the height adjusts automatically */
  aspect-ratio: 9 / 16; /* Sets the aspect ratio to 16:9 */
}

#hp-human-email-container{
	height: auto;
}
#hp-human-email{
  width: 98%; /* The image will take up 100% of its container's width */
  height: auto; /* Ensures the height adjusts automatically */
  aspect-ratio: 9 / 16; /* Sets the aspect ratio to 16:9 */
}


.btn4hp{
	margin-left: 0px;
	margin-top: 0px;
}

#abc_tall{
}
.abc_img_tall{
  width: 100%; /* The image will take up 100% of its container's width */
  height: auto; /* Ensures the height adjusts automatically */
  aspect-ratio: 9 / 15; /* Sets the aspect ratio to 16:9 */
}

.posfx{
	align-content: center;
}


/*----------------------------------------------*/
/*Used to switch between search mode for faq or accordion only
the #FAQSearchBar is set to flex to display or none to hide
the search bar.  if the search bar is hidden then the #FAQHomeBtn
should be set to display flex;  otherwise display none;
*/

#FAQSearchBar{
	display: flex;
}
#FAQHomeBtn{
	display none;
	visibility: hidden;
	position: fixed;
	top: 90px;
	left: 10px;
	width: 25px;
	height: 25px;
	background-color: transparent;
	z-index: 1000;
}
#faq-speaker-btn{
	display: none;
}
#faq-mic-btn{
	display: none;
}

/*----------------------------------------------*/

#hp-requestestimate{
	background-color: red;
	color: white;
}
#hp-requestestimate:hover{
	background-color: blue;
	color: white;
}

#videoPlayer {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}
