/* Hubco Green — global base styles.
 * Only resets, container widths and header/footer chrome live here.
 * Every block's own visual design lives in its block.json "style" file
 * so patterns stay fully portable and editable.
 */

*, *::before, *::after { box-sizing: border-box; }

body.hubco-green {
	background: var( --wp--preset--color--bg-void );
	color: var( --wp--preset--color--text-primary );
}
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
 
::-webkit-scrollbar-track {
	background: var( --wp--preset--color--bg-void );
}
 
::-webkit-scrollbar-thumb {
	background-color: var( --wp--preset--color--border-hairline );
	border-radius: 9999px;
	border: 2px solid var( --wp--preset--color--bg-void );
}
 
::-webkit-scrollbar-thumb:hover {
	background-color: var( --wp--preset--color--text-muted );
}
h1{
text-transform: capitalize;
}
h2{
font-size: 2.5rem;
text-transform: capitalize;
}
h3{
text-transform: capitalize;
}
h4{
text-transform: capitalize;
}
h5{
text-transform: capitalize;
}
h6{
text-transform: capitalize;
}
img { max-width: 100%; height: auto; display: block; }

.privacy_group h3.wp-block-heading {
    font-size: 1.5rem !important;
}

/* ---------- Site header ---------- */

.hubco-header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 120px;
	background: rgba( 8, 10, 8, 0.92 );
	backdrop-filter: blur( 8px );
	border-bottom: 1px solid var( --wp--preset--color--border-hairline );
}

.hubco-header .wp-block-site-logo img { max-height: 40px; width: auto; }

.hubco-header-nav.wp-block-navigation {
	--wp--style--block-gap: 32px;
	flex-grow: 1;
	justify-content: center;
}

.hubco-header-nav .wp-block-navigation-item > a,
.hubco-header-nav .wp-block-navigation-item > .wp-block-navigation-item__content {
	padding: 8px 4px;
	color: var( --wp--preset--color--text-muted );
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
}

.hubco-header-nav .wp-block-navigation-item > a:hover,
.hubco-header-nav .wp-block-navigation-item.current-menu-item > a {
	color: var( --wp--preset--color--text-primary );
	font-weight: 600;
}

.hubco-header-actions {
	flex-shrink: 0;
}

.hubco-header-contact {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var( --wp--preset--color--text-muted );
	transition: color 0.15s ease;
}

.hubco-header-contact:hover {
	color: var( --wp--preset--color--brand-primary );
}


@media ( max-width: 1200px ) {
	.hubco-header { padding: 20px 48px; }
}

@media ( max-width: 782px ) {
	.hubco-header { padding: 16px 20px; }
}

/* ---------- Mobile navigation (hamburger + overlay) ---------- */

/* WordPress core hides the hamburger below 600px and shows the full
 * inline menu above it — a different breakpoint than the rest of this
 * header (782px). Between 600–782px that leaves a "dead zone" where the
 * menu is too narrow to fit on one line but the hamburger hasn't
 * appeared yet, so items overflow/wrap instead of collapsing. These
 * rules override core's 600px cutoff so the hamburger and the inline
 * menu both switch at the same 782px breakpoint the header already uses. */
@media ( max-width: 781px ) {
	.hubco-header .wp-block-navigation__responsive-container-open:not( .always-shown ) {
		display: flex !important;
		
	}
	.hubco-header .wp-block-navigation__responsive-container:not( .hidden-by-default ):not( .is-menu-open ) {
		display: none !important;
	}
}
@media ( min-width: 782px ) {
	.hubco-header .wp-block-navigation__responsive-container-open:not( .always-shown ) {
		display: none !important;
	}
	.hubco-header .wp-block-navigation__responsive-container:not( .hidden-by-default ):not( .is-menu-open ) {
		display: flex !important;
		position: relative;
		z-index: auto;
        
		
	}
}

/* Make sure the hamburger icon is actually visible against the dark
 * header (it inherits color from its parent, which otherwise defaults
 * to a low-contrast muted grey). */
.hubco-header .wp-block-navigation__responsive-container-open {
	color: var( --wp--preset--color--text-primary );
}

/* The overlay panel has no background/text color set on the block by
 * default, so on a dark site it can open "invisibly" on top of an
 * already-dark page. Force it to a solid, on-brand panel so it's
 * unmistakably visible when opened. */
.wp-block-navigation__responsive-container.is-menu-open {
	background-color: var( --wp--preset--color--bg-void ) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
	color: var( --wp--preset--color--text-primary ) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a:hover {
	color: var( --wp--preset--color--brand-primary ) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close svg {
	fill: var( --wp--preset--color--text-primary );
}

/* ---------- Site footer ---------- */

.hubco-footer {
	padding: 40px 0px !important;
	background: var( --wp--preset--color--bg-void );
	margin-left: 50px;
	margin-right: 50px;
}


.hubco-footer-top {
	display: grid;
grid-template-columns: repeat(1, minmax(0px, 1fr));
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
	max-width: none;
}

.hubco-footer-top .wp-block-site-logo {
	grid-column: 1;
	justify-self: start;
}

.hubco-footer-top .wp-block-site-logo img { max-height: 40px; width: auto; }

.hubco-footer-nav.wp-block-navigation {
	grid-column: 2;
	justify-self: center;
	--wp--style--block-gap: 28px;
}

.hubco-footer-nav .wp-block-navigation-item > a,
.hubco-footer-nav .wp-block-navigation-item > .wp-block-navigation-item__content {
	color: var( --wp--preset--color--text-secondary );
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.hubco-footer-nav .wp-block-navigation-item > a:hover{
	color: var( --wp--preset--color--text-primary );
}

.hubco-footer-divider.wp-block-separator {
	border-top: 1px solid var( --wp--preset--color--border-hairline );
	margin: 0 0 32px;
	width: 100% !important;
	max-width: none ;
}

.hubco-footer-bottom {
	display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    max-width: none;
    justify-content: space-between;
}

.hubco-footer-social {
	display: flex;
	align-items: center;
	gap: 24px;
   margin: 0px;
	justify-content: flex-end;
}

.hubco-footer-social a {
	display: flex;
	color: var( --wp--preset--color--text-muted );
	transition: color 0.15s ease;
}

.hubco-footer-social a:hover {
	color: var( --wp--preset--color--brand-primary );
}

.hubco-footer-legal {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
	color: var( --wp--preset--color--text-muted );
}

.hubco-footer-legal a {
	color: var( --wp--preset--color--text-muted );
	text-decoration: none;
}

.hubco-footer-legal a:hover {
	color: var( --wp--preset--color--text-primary );
}

@media ( max-width: 1200px ) {
	.hubco-footer { padding: 40px 48px; }
}

@media ( max-width: 782px ) {
	.hubco-footer { padding: 40px 20px; }

	.hubco-footer-top {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 24px;
	}

	.hubco-footer-top .wp-block-site-logo,
	.hubco-footer-nav.wp-block-navigation {
		grid-column: 1;
		justify-self: center;
	}

	.hubco-footer-nav.wp-block-navigation {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hubco-footer-bottom {
		align-items: center;
		text-align: center;
	}
}

/* ---------- Shared section utilities used inside patterns ---------- */

.hubco-eyebrow {
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 13px;
	font-weight: 500;
	color: var( --wp--preset--color--text-secondary );
	margin-bottom: 12px;
}

.hubco-section {
	padding-top: var( --wp--preset--spacing--60 );
	padding-bottom: var( --wp--preset--spacing--60 );
}

@media ( max-width: 782px ) {
	.hubco-section {
		padding-top: var( --wp--preset--spacing--50 );
		padding-bottom: var( --wp--preset--spacing--50 );
	}
}

.hubco-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid var( --wp--preset--color--border-hairline );
	background: var( --wp--preset--color--bg-surface );
	font-size: 13px;
	color: rgba(176, 181, 176, 1);
}

.hubco-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hubco-check-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 14px;
	color: var( --wp--preset--color--text-secondary );
	font-size: 15px;
}

.hubco-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: var( --wp--preset--color--brand-primary );
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M20 6 9 17l-5-5'/></svg>") center / 12px no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M20 6 9 17l-5-5'/></svg>") center / 12px no-repeat;
}

.hubco-station-card {
	padding: 24px;
	border: 1px solid var( --wp--preset--color--border-hairline );
	border-radius: 12px;
	background: var( --wp--preset--color--bg-surface );
}

.hubco-contact-icon {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var( --wp--preset--color--bg-surface );
	color: var( --wp--preset--color--brand-primary );
	align-items: center;
	justify-content: center;
}

.hubco-mock-input {
	margin: 0;
	height: 52px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	background: var( --wp--preset--color--bg-void );
	border: 1px solid var( --wp--preset--color--border-hairline );
	border-radius: 16px;
	color: var( --wp--preset--color--text-muted );
	font-size: 16px;
}

.hubco-map-mock { position: relative; }

.hubco-map-mock__search {
	position: absolute;
	z-index: 1;
	top: 20px;
	left: 20px;
	width: 380px;
	max-width: calc( 100% - 40px );
	height: 52px;
	background: var( --wp--preset--color--bg-surface );
	border: 1px solid var( --wp--preset--color--border-hairline );
	border-radius: 16px;
	padding: 0 16px;
	color: var( --wp--preset--color--text-muted );
	gap: 12px !important;
}

.hubco-map-mock__search p { margin: 0; font-size: 14px; }

.max-width_large{
	max-width: 100% !important;
}
.min-width_large{
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px !important;
}
:where(.wp-site-blocks) > *{
	margin-block-start:0px !important;
}
.entry-content{
	max-width: none !important;
}
.bg-statsRow{
	background: rgba(17, 20, 17, 1);
	margin-top: 0px !important;
}
.bg-tranpsrent{
	background-color: transparent !important;
}
.sectionspacing_lg_y{
	padding-top: 7rem;
	padding-bottom: 7rem;
}
.sectionspacing_lg_t{
	padding-top: 7rem;
	margin-top: 0px;
	padding-bottom: 0px;
}
.image_header_bg .wp-block-columns h1{
	font-size: 3.5rem !important;
    position: relative;
	z-index: 1;
}
.image_header_bg .wp-block-columns{
	height:  100%;
    justify-content: center;
    align-items: center !important;
	margin-top: 0px !important;
}
.image_header_bg{
	background-image: url(../images/chargingbanner.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 500px;
    position: relative;
}
.image_header_bg:after{
	content: '';
	position: absolute;
	background-color: rgba(0, 0, 0, 0.7);
	top: 0px;
	width: 100%;
	height: 100%;
}

.about_bg{
	background-image: url(../images/aboutherobanner.png);
}

.about_bg:after{
	background-color: transparent;
}

.main-section-heading-space{
	margin-bottom: 2.5rem;
}
.leadership_wrap {
	background-color: transparent !important;
}
.leadership_wrap .hubco-fg-card{
	display: flex;
	flex-direction: column-reverse;
}
.heading_wraper .smallhead{

}
.hubco-hero__heading_wrap{
	    font-size: 3.5rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--wp--preset--color--text-primary);
}
.hubco-hero__subheading_wrap{
	font-size: 1.25rem;
    line-height: 1.5;
	margin: 0 0 24px;
	color: var(--wp--preset--color--text-secondary);
}
.transparetnHeader .hubco-hero__subheading_wrap {
    /* max-width: fit-content !important; */
    margin-bottom: 0px !important;
}
.heading_wraper_mainhead{
margin-bottom: 0px !important;
    margin-top: 0px;
}
.heading_wraper_parahead{
    margin-top: 12px;
    margin-bottom: 40px;
}

.transparetnHeader .hubco-hero__subheading{
	max-width: fit-content !important;
	margin-bottom: 0px !important;
}
.transparetnHeader .hubco-hero__inner{
	margin: 0px auto;
	text-align: center;
}
.transparetnHeader .hubco-hero__scrim{
	display: none !important;
}
.transparetnHeader{
	background: transparent !important;
	padding-top: 7rem;
	padding-bottom: 0px !important;
}
.termPolicy_header{
	padding-bottom: 6rem !important;
}
.termPolicy_header button{
	display: none;
}
.termPolicy_header.transparetnHeader .hubco-hero__inner{
	margin: 0px;
	text-align: left;
}
/* homepage slick slider */


/* Desktop layout */
.tab {
  position: relative;
  cursor: pointer;
  padding-bottom: 12px;
}
.tab .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var( --wp--preset--color--text-muted );
  overflow: hidden;
  border-radius: 1px;
}
.tab .progress-bar {
  height: 100%;
  width: 0;
  background: var(--wp--preset--color--brand-primary); /* Blue */
}

.tabs {
  display: flex;
  justify-content: space-between;
  /* border-top: 2px solid #eee; */
  margin-bottom: 15px;
  gap: 1rem;
}

.tab {
  flex: 1;
  text-align: left;
  padding: 10px 0px;
  cursor: pointer;
/*   border-top: 2px solid #eee; */
  transition: all 0.3s ease;
  position: relative;
}

/* .tab.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0px;
  display: flex;
  width: 10%;
  height: 2px;
  background-color: var(--primary);
} */

.slider img {
  width: 100% !important;
  /* height: 650px !important; */
  max-width: none !important;
  border-radius: 1.5rem;
  /* background: #ccc; */
}
.slide-content-mobile{
  display: none;
}
.desktop-tabs H3, .slide-content-mobile h3{
  color: var( --wp--preset--color--white );
  font-size: 1.125rem;
    /* font-family: "latobold"; */
  font-weight: 700;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0px !important;
  margin-top: 0px !important;
 }
 .desktop-tabs p, .slide-content-mobile p{
  color: var( --wp--preset--color--text-muted );
  font-size: 0.875rem;
    margin-bottom: 0px !important;
    margin-top: 0px !important;

 }
  .desktop-tabs p a, .slide-content-mobile p a{
    color: var(--primary);  
  }
.slider_tabs .desktop-tabs{
  opacity: 0.5;
}
.slider_tabs.active .desktop-tabs{
  opacity: 1;
}
  .map-xs{
	display: none !important;
}
.map-md{
	display:  block !important;
  }



/* host a charger form css */
.hubco-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: var( --wp--preset--color--bg-surface, #111411 );
	border: 1px solid var( --wp--preset--color--border-hairline, #262926 );
	border-radius: var( --wp--custom--radius--lg, 16px );
	padding: 2rem;
}

.hubco-form__row {
	display: flex;
	gap: 20px;
}
 .hubco-form__field p, .hubco-form__submit-row p{
	margin: 0px !important;
}

.hubco-form__row .hubco-form__field {
	flex: 1 1 0%;
	min-width: 0;
}

.hubco-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hubco-form__label {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	padding-bottom: 10px !important;
    display: inline-block;
	color: var( --wp--preset--color--text-secondary, #b0b5b0 );
}

.hubco-form__section-label {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.96px;
	color: var( --wp--preset--color--text-muted, #838983 );
	text-transform: uppercase;
}

/* Inputs, selects, textareas — CF7 tags all get .wpcf7-form-control */
.hubco-form .wpcf7-form-control {
	width: 100%;
	height: 52px;
	padding: 14px 16px;
	background: var( --wp--preset--color--bg-surface, #111411 );
	border: 1px solid var( --wp--preset--color--border-hairline, #262926 );
	border-radius: var( --wp--custom--radius--md, 12px );
	color: var( --wp--preset--color--text-primary, #dfe3df );
	font-size: 16px;
	line-height: 1.6;
	font-family: inherit;
}
.hubco-form .hubco-form__consent .wpcf7-form-control{
	border: none !important;
}
.hubco-form .wpcf7-form-control::placeholder {
	color: var( --wp--preset--color--text-muted, #838983 );
}

.hubco-form .wpcf7-form-control:focus {
	outline: none;
	border-color: var( --wp--preset--color--brand-primary, #237535 );
}
input.wpcf7-not-valid, select.wpcf7-not-valid{
	border-color: #e5484d !important;
}

/* Select arrow */
.hubco-form select.wpcf7-form-control {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23838983' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 44px;
}

/* Consent checkbox */
.hubco-form__consent .wpcf7-list-item {
	margin: 0;
}

.hubco-form__consent .wpcf7-form-control.wpcf7-acceptance label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.hubco-form__consent input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background: var( --wp--preset--color--bg-surface, #111411 );
	border: 1px solid var( --wp--preset--color--border-hairline, #262926 );
	border-radius: var( --wp--custom--radius--sm, 8px );
	cursor: pointer;
	position: relative;
}

.hubco-form__consent input[type="checkbox"]:checked {
	background: var( --wp--preset--color--brand-primary, #237535 );
	border-color: var( --wp--preset--color--brand-primary, #237535 );
}

.hubco-form__consent input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.hubco-form__consent .wpcf7-list-item-label {
	font-size: 14px;
	line-height: 1.4;
	color: var( --wp--preset--color--text-secondary, #b0b5b0 );
}

/* Submit button */
.hubco-form__submit-row input.wpcf7-form-control.wpcf7-submit {
	width: 100%;
	height: 52px;
	padding: 0 24px;
	background: transparent;
    border: 1px solid var(--wp--preset--color--brand-primary);
    border-radius: 9999px;
    color: var(--wp--preset--color--brand-primary);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
}
.hubco-form__submit-row input.wpcf7-form-control.wpcf7-submit:hover{
	background: var(--wp--preset--color--brand-primary);
    color: var(--wp--preset--color--white);
}

.hubco-form__submit-row input.wpcf7-form-control.wpcf7-submit::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-left: 8px;
	vertical-align: -4px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f8fbf8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
}

.hubco-form .wpcf7-not-valid-tip {
	font-size: 12px;
	color: #e5484d;
	margin-top: 4px;
}
.hubco-form textarea.wpcf7-form-control {
	height: 140px;
	padding-top: 14px;
	resize: vertical;
}
@media ( max-width: 600px ) {
	.hubco-form { padding: 24px; }
	.hubco-form__row { flex-direction: column; }
}










/* ---------- Site header ---------- */

.hubco-header{
	/* max-width: 1200px !important; */
	margin-left: 50px;
	margin-right: 50px;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.hubco-header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	transition: 0.5ms all;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 120px;
	background: rgba( 8, 10, 8, 0.92 );
	/* backdrop-filter: blur( 8px );
	border-bottom: 1px solid var( --wp--preset--color--border-hairline ); */
}

.hubco-header:has( .wp-block-navigation__responsive-container.is-menu-open ) {
	backdrop-filter: none;
}

.hubco-header .wp-block-site-logo img { max-height: 40px; width: auto; }

.hubco-header-nav.wp-block-navigation {
	--wp--style--block-gap: 32px;
	flex-grow: 1;
	min-width: 0;
	justify-content: center;
}

.hubco-header-nav .wp-block-navigation-item > a,
.hubco-header-nav .wp-block-navigation-item > .wp-block-navigation-item__content {
	padding: 8px 4px;
	color: var( --wp--preset--color--text-muted );
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
}

.hubco-header-nav .wp-block-navigation-item > a:hover,
.hubco-header-nav .wp-block-navigation-item.current-menu-item > a {
	color: var( --wp--preset--color--text-primary );
	font-weight: 600;
}

.hubco-header-actions { flex-shrink: 0; }

@media ( max-width: 1200px ) {
	.hubco-header { padding: 20px 48px; }
}

@media ( max-width: 1023px ) {
	.hubco-header { padding: 16px 20px; }
}

/* ---------- Mobile navigation (hamburger + overlay) ---------- */

@media ( max-width: 1023px ) {
	.hubco-header .wp-block-navigation__responsive-container-open:not( .always-shown ) {
		display: flex !important;
	}
	.hubco-header .wp-block-navigation__responsive-container:not( .hidden-by-default ):not( .is-menu-open ) {
		display: none !important;
	}
}
@media ( min-width: 1024px ) {
	.hubco-header .wp-block-navigation__responsive-container-open:not( .always-shown ) {
		display: none !important;
	}
	.hubco-header .wp-block-navigation__responsive-container:not( .hidden-by-default ):not( .is-menu-open ) {
		display: flex !important;
		position: relative;
		z-index: auto;
	}
}

.hubco-header .wp-block-navigation__responsive-container-open {
	color: var( --wp--preset--color--text-primary );
}

.wp-block-navigation__responsive-container.is-menu-open {
	position: fixed !important;
	inset: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	z-index: 999999 !important;
	background-color: var( --wp--preset--color--bg-void ) !important;
	overflow-y: auto;
    padding-top:3rem !important;
}


.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
	color: var( --wp--preset--color--text-primary ) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a:hover {
	color: var( --wp--preset--color--brand-primary ) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close svg {
	fill: var( --wp--preset--color--text-primary );
}

.home .hubco-header-wrapper , .page-about-us .hubco-header-wrapper{
	position: fixed !important;
    /* width: 100%; */
    top: 0rem;
    /* box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%); */
    /* box-shadow: 0 2px 12px 0 rgb(36 50 66 / 8%); */
    transition: 0.5ms all;
    z-index: 2;
    left: 0;
    right: 0;
    justify-content: center;
    max-width: 100%;
	background: rgba( 8, 10, 8, 0.2 );
	backdrop-filter: blur( 4px );
	/* border-bottom: 1px solid var( --wp--preset--color--border-hairline ); */
    padding: 0px;
}
.hubco-header--scrolled{
	position: fixed !important;
    /* width: 100%; */
    top: 0rem;
    /* box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%); */
    /* box-shadow: 0 2px 12px 0 rgb(36 50 66 / 8%); */
    transition: 0.5ms all;
    z-index: 99999;
    left: 0;
    right: 0;
    justify-content: center;
    max-width: 100%;
	background: rgba( 8, 10, 8, 0.92 ) !important;
	backdrop-filter: blur( 8px );
	/* border-bottom: 1px solid var( --wp--preset--color--border-hairline ); */
    padding: 0px;
	/* transition:padding 0.35s cubic-bezier( 0.22, 1, 0.36, 1 ), background-color 0.35s cubic-bezier( 0.22, 1, 0.36, 1 ), box-shadow 0.35s cubic-bezier( 0.22, 1, 0.36, 1 ), border-color 0.35s cubic-bezier( 0.22, 1, 0.36, 1 ), backdrop-filter 0.35s cubic-bezier( 0.22, 1, 0.36, 1 ) !important;
	will-change: padding, background-color, box-shadow; */

}

.home_heroWrap{
	position: relative;
}
.hubco-header-wrapper{
	transition: 0.5ms all;
}
.home .hubco-header , .page-about-us .hubco-header{
background: transparent;backdrop-filter: none;border:none;
}

.home_heroWrap:after{
	content: '';
	height: 100%;
	width: 100%;
	display: flex;
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0px;
}
.videowrapper_md video{
	height: 760px;
}
.video_content{
	position: absolute;
    bottom: 25%;
    left: 0px;
    z-index: 1;
    margin-left: 50px !important;
    margin-right: 50px !important;
    /* max-width: 1200px !important; */
    right: 0px;
}
.video_content h1{
	    font-size: 3.5rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--wp--preset--color--text-primary);
	margin-bottom: 80px;
}

.video_content_arrow{
position: absolute;
	bottom: 5%;
	left: 0px;
	right: 0px;
	margin: 0 auto;
	z-index: 1;
}
.video_content_arrow .herohome_arrow svg{
	text-align: center;
	animation: hubco-bounce 2s infinite;
	margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.videowrapper_xs{
	display: none;
}

.errorpage_heading{
	font-size: 4.5rem;
	font-weight: 700;
}
.hubco-stats_mainWrap {
	gap: 0px;
}

.chargingStandard_wrap {
  padding: 6px 0px;
  border-radius: 1.5rem;
  /* border: 1px solid rgba(38, 41, 38, 1);
  background: rgba(17, 20, 17, 1); */
}
.chargingStandard_wrap p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0rem;
  /* border-bottom: 1px solid rgba(38, 41, 38, 1); */
  margin: 0px;
  font-weight: 400;
}
.chargingStandard_wrap p span {
  color: rgba(176, 181, 176, 1);
}
.chargingStandard_wrap p .text-white {
  color: #fff;
  font-weight: 500;
}
.chargingStandard_wrap p:last-child {
  border-bottom: none;
}
.chargingStation_stats .hubco-stat__icon img {
    width: 35px;
    height: 35px;}
    
    .privacyList_wrap li{
    margin-bottom:1rem;
}
.privacyList_wrap li:last-child{
    margin-bottom:0px !important;
}
@media only screen and (max-width: 850px) and (min-width: 600px){

	:root{
		font-size: 14px;
	}
	p{
		font-size: 1rem;
	}

.conncector-resp{
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.parnterLogo_wrap{
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.locationWrap .hubco-station-card{
    justify-content: space-between;
	align-items: center;
	display: flex;

}
.gallerySection img{
	width: 100%;
}
.locationWrap .hubco-station-card .wp-block-group{
	display: flex;
	align-items: center;
	margin: 0px !important;
	gap: 1rem;
}
.locationWrap .hubco-station-card p{
	margin: 0px;
}
.hubco-spec-cards .hubco-spec-card{
	flex-direction: row;
	
}
.hubco-spec-card__media, .hubco-spec-card__body{
	width: 50%;
}
.hubco-stats{
	display: grid !important;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	padding: 40px 0px;
}
.hubco-stats_mainWrap{
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 0px;
}
.hubco-stat{
	padding-top: 0px !important;
}
.sectionspacing_lg_t{
	padding-top: 5rem;
}
.sectionspacing_lg_y {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.hubco-spec-cards{
	gap: 2rem 0rem;
}

.videowrapper_md video{
	height: 560px;
}
}
@media ( max-width: 1400px ) {

.hubco-video-minimal__toggle{
	transform: none !important;
left: 120px !important;
}
}
@media ( max-width: 1200px ) {
	.hubco-header, .min-width_large, .resp-mx-grid, .videoPlayBtn, .video_content, .hubco-footer{
	margin-left: 20px !important;
	margin-right: 20px !important;
}

.hubco-video-minimal__toggle{
	transform: none !important;
left: 15px !important;
}
}
@media ( max-width: 786px ) {
	
.hubco-header, .min-width_large, .resp-mx-grid, .transparetnHeader, .videoPlayBtn, .video_content, .hubco-footer {
	margin-left: 15px !important;
	margin-right: 15px !important;
}
.is-responsive.hubco-header-nav{
	justify-content: end;
}
.wp-block-navigation__responsive-dialog{
	padding-left: 15px;
	padding-right: 15px;
}
.wp-block-navigation__responsive-container-close{
	    right: 15px;
}

/* header style */
.wp-block-navigation__responsive-dialog::before{
	content: 'Menu';
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;

}
.wp-block-navigation__responsive-container-content{
	padding-top: 1.5rem !important;
}

.resp-sm-widthfulll{
	width: 100%;
}
.hubco-video-minimal__toggle{
	display: none !important;
}
}

@media ( max-width: 500px ) {
  :root {
    font-size: 12px;
  }
    .slide-content-mobile{
  display: block;
  border-top: 1px solid var( --wp--preset--color--text-muted );
  margin-top: 2rem;

}
.slider :first-child .slide-content-mobile{
	border-top: none !important;
	margin-top: 0px;
}
.slide-content-mobile h3{
   padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
}
.slide-content-mobile p{
	font-size: 1rem;
}
.slide-content-mobile{
   	padding-top: 1rem;
	padding-bottom: 1rem;
}
 .tabs {
    display: none; /* hide top tabs */
  }
  
  .slider img{
	height: auto !important;
  }

  .slider .slide-content {
    padding: 10px;
  }
  .hubco-stats{
	gap: 20px 0px;
  }
  .map-xs{
	display: block !important;
}
  .map-xs img{
	margin-left: auto;
	margin-right: auto;
  }
.map-md{
	display: none !important;
  }
  .hubco-stats{
	padding: 0px !important;
  }
  .hubco-spec-cards{
	gap: 2rem 0rem;
}
.videowrapper_xs{
	display: block;
	margin-top: 0px;
}
.videowrapper_xs video{
	height: 500px;
}
.videowrapper_md{
	display: none;
}

.video_content h1{
	/* font-size: 2.5rem; */
}
.hubco-stats{
	border: none !important;
}
.bg-statsRow{
	padding-bottom: 24px;
}

.hubco-footer-bottom{
        flex-direction: column;}
}
@media ( max-width: 325px ) {
 .hubco-calc__row{
	flex-direction: column;
	align-items: flex-start;
 }
 .hubco-calc__breakdown{
	gap: 1rem;
 }
 

}

.hubco-calc__input[type="number"]::-webkit-inner-spin-button,
.hubco-calc__input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.hubco-calc__input[type="number"] {
	-moz-appearance: textfield;
}

/* 
.hidden-none, .hubco-header-actions ,.wp-block-navigation__container :nth-child(1), .wp-block-navigation__container :nth-child(2), .wp-block-navigation__container :nth-child(3), .wp-block-navigation__container :nth-child(4){
	display: none !important;
} */

@keyframes hubco-bounce {
	0%, 100% { transform: translate( -50%, 0 ); }
	50% { transform: translate( -50%, 8px ); }
}


.privacyytable_wraper tr th{
color:#fff !important;
}

.privacyytable_wraper.wp-block-table thead{
    border-bottom: 0px solid !important;
}

.privacyytable_wraper.wp-block-table td, .privacyytable_wraper.wp-block-table th {
    border: 1px solid #B0B5B0 !important;
    }
    
    
    
    
    
	/* Kill the browser's light-blue autofill background + dark text on
 * autofilled fields, which otherwise overrides our dark theme. Browsers
 * ignore a plain background-color change here, so this uses a large
 * inset box-shadow the same color as the field instead — that's the
 * only reliable cross-browser way to override it. */
.hubco-form .wpcf7-form-control:-webkit-autofill,
.hubco-form .wpcf7-form-control:-webkit-autofill:hover,
.hubco-form .wpcf7-form-control:-webkit-autofill:focus,
.hubco-form .wpcf7-form-control:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 1000px var( --wp--preset--color--bg-surface, #111411 ) inset;
	box-shadow: 0 0 0 1000px var( --wp--preset--color--bg-surface, #111411 ) inset;
	-webkit-text-fill-color: var( --wp--preset--color--text-primary, #dfe3df );
	caret-color: var( --wp--preset--color--text-primary, #dfe3df );
	transition: background-color 5000s ease-in-out 0s; /* stops the color "flashing" back on submit/blur in Chrome */
}

/* Firefox handles autofill differently (no -webkit-autofill pseudo) —
 * this covers it separately. */
.hubco-form .wpcf7-form-control:autofill {
	background-color: var( --wp--preset--color--bg-surface, #111411 ) !important;
	color: var( --wp--preset--color--text-primary, #dfe3df ) !important;
}


.partner-logo{
		cursor: default !important;
}
.partner-logo img{
  text-align: center;
/*   filter: grayscale(100%) brightness(70%) contrast(120%); */
  transform: scale(1) !important;
  margin: 0 auto;
  object-fit: contain;
  height: 100px;
	width:100%;
	cursor: default !important;
}
.partner-logo img:hover{
  filter: none;
  cursor: pointer;
}
.partner-logo .company-name{
	font-size: 0.875rem;
	text-align: center;
}
.partner-logo .wp-block-image{
  /* height: 100px; */
  vertical-align: middle;
  margin-bottom: 0px !important;
      display: flex;
	/* width:150px; */
    align-items: center;
    justify-content: center;
	cursor: default !important;
	flex-direction: column;
}