/* ==========================================================================
   Residential — Hero
   ========================================================================== */
.residential header {
	background: transparent;
}
.residential header.full_width {
	position: relative;
	z-index: 2;
	overflow: visible;
}
.residential_hero {
	position: relative;
	z-index: 1;
	text-align: center;
}
.residential_hero::before {
	content: "";
	position: absolute;
	width: 200vw;
	height: 200vw;
	background-image: url(../img/hero_decal_2.svg);
	background-size: cover;
	left: 50%;
	transform: translateX(-50%);
	bottom: 315px;
	z-index: -1;
	pointer-events: none;
}
.residential_hero_heading {
	font-weight: 700;
	font-size: 84px;
	text-align: center;
	max-width: 700px;
	margin: 0 auto 20px;
}
.residential_hero_heading span {
	color: var(--brand-accent);
	font-weight: 700;
}
.residential_hero_description {
	font-size: 25px;
	font-weight: 400;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
/* 769px is the site's common tablet/mobile breakpoint (nav collapse, mobile
   gutter, etc.) — matching it here keeps the hero text change lined up with
   everything else that shifts at the same viewport width. */
@media only screen and (min-width: 426px) and (max-width: 769px) {
	.residential_hero_heading {
		font-size: 64px;
	}
}
@media only screen and (max-width: 769px) {
	.residential_hero_description {
		font-size: 18px;
	}
}
@media only screen and (max-width: 425px) {
	.residential_hero_heading {
		font-size: 40px;
	}
}
.residential_hero_cta {
	position: relative;
	z-index: 10;
	text-align: center;
	transform: translateY(-50%);
	margin-bottom: -50px;
}
.residential_hero_cta .button_accent {
	background-color: var(--brand-accent);
	color: var(--brand-dark-background);
	border-color: var(--brand-accent);
}
.residential_hero_cta .button_accent:hover {
	background-color: var(--brand-dark-background);
	color: var(--brand-accent);
}

@media only screen and (max-width: 860px) {
	.residential_hero_heading span {
		color: var(--brand-dark-background);
	}
}

/* ==========================================================================
   Residential — Subscription & Benefits
   ========================================================================== */
.subscription .gosolr.col-5 div {
    padding: 20px;
}
.subscription i {
    font-size: 40px;
}
.get_that_glow_heading {
	margin-top: 100px
}
body:not(.commercial) .benefits {
	background-color: var(--brand-gray-light);
}
.benefit_icon {
    max-width: 180px;
}
.benefit_description {
    font-size: 20px;
}

/* ==========================================================================
   Residential — Select your power
   ========================================================================== */
.select_your_power .full_width_inner,
#packages.packages .full_width_inner {
	max-width: 960px;
}
.select_your_power {
	background-color: #ffc800;
}
.select_your_power .row .col-12 {
	margin-bottom: 0
}
.select_your_power h2 {
	font-size: 84px;
	font-weight: 800;
	color: var(--brand-dark-background);
	margin: 0 0 10px;
}
.select_your_power .sub_header_text {
	font-size: 25px;
	color: var(--brand-dark-background);
	font-weight: 400;
}

.power_tabs {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.power_tab {
	appearance: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	background-color: var(--brand-white);
	color: var(--brand-dark-background);
	padding: 28px 55px;
	min-width: 320px;
	text-align: center;
	border-radius: 60px 60px 0 0;
	position: relative;
	z-index: 1;
}
.power_tab_text {
	position: relative;
	z-index: 1;
	font-size: 24px;
	font-weight: 800!important
}
.power_tab_text span {
	font-size: 18px;
	font-weight: 400
}
.power_tab span {
	display: block;
	font-weight: 400;
}
.power_tab_active {
	background-color: var(--brand-dark-background);
	color: var(--brand-accent);
	z-index: 10;
}
.power_tab_active span {
	color: var(--brand-accent);
}
.power_tab::after {
	content: "";
	position: absolute;
	top: 0;
	width: 150px;
	height: 103%;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}
.power_tab:first-child::after {
	right: -80px;
}
.power_tab:last-child::after {
	left: -80px;
	transform: scaleX(-1);
}
.power_tab_active::after {
	background-image: url(../img/active-tab-after.svg);
}
.power_tab_content {
	display: none;
}
.power_tab_content.power_tab_content_active {
	display: block;
}

@media only screen and (max-width: 690px) {
	.power_tabs {
		flex-direction: column;
		align-items: center;
		margin-bottom: 40px
	}
	.power_tab {
		border-radius: 30px;
		width: 100%;
		max-width: 320px;
	}
	.power_tab:first-child {
		padding-right: 55px;
		margin-bottom: 10px;
	}
	.power_tab::after {
		display: none;
	}
}

/* ==========================================================================
   Residential — Free assessment CTA
   Half in this section, half in "Make the bright choice" below — reuses the
   shared .subscribe .cta_box (position:absolute) from style.css, just
   pushed down to the section's bottom edge instead of its vertical center.
   ========================================================================== */
body.residential .subscribe .row [class^="col"] {
	margin: 0!important;
	min-height: auto
;
}
body.residential .subscribe .cta_box {
	position: absolute;
	top: 100%;
	z-index: 10;
}
@media only screen and (min-width: 900px) {
	body.residential .subscribe .cta_content p {
		max-width: none;
		white-space: nowrap;
	}
}

/* ==========================================================================
   Residential — Make the bright choice
   ========================================================================== */
.bright_choice_cta {
	background-image: url(../img/residential_bright_choice.avif);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.bright_choice_cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.1) 80%);
	z-index: 1;
}
.bright_choice_cta .full_width_inner {
	z-index: 2;
	position: relative;
}
.bright_choice_cta h2 {
	max-width: 500px;
	color: var(--brand-white);
}
.bright_choice_cta p {
	color: var(--brand-white);
	font-weight: 400;
	font-size: 21px;
	line-height: 1.5;
	max-width: 60%;
}
.bright_choice_cta a {
	margin-top: 40px;
	background-color: var(--brand-accent);
	color: var(--brand-dark-background);
	border-color: var(--brand-accent);
}
.bright_choice_cta a:hover {
	background-color: var(--brand-dark-background);
	color: var(--brand-accent);
	border-color: var(--brand-dark-background);
}

@media only screen and (max-width: 860px) {
	.bright_choice_cta h2 {
		max-width: 100%;
	}
	.bright_choice_cta p {
		max-width: 100%;
	}
}

/* ==========================================================================
   Residential — Our solution
   ========================================================================== */
.installers_steps_section {
	background-color: var(--brand-white);
	position: relative;
	z-index: 0;
}
.installers_steps_heading {
	font-size: 84px;
	font-weight: 700;
	color: var(--brand-dark-background);
	text-align: center;
	margin-top: 0;
	margin-bottom: 60px;
}
.installers_steps_inner {
	max-width: 860px;
	margin: 0 auto;
}
.installers_step {
	display: flex;
	margin-bottom: 60px;
}
.installers_step:last-child {
	margin-bottom: 0;
}
.installers_step img {
	width: 200px;
	height: auto;
}
.installers_step_img_wide {
	width: 270px!important;
}
.installers_step_right {
	justify-content: flex-end;
	align-items: center;
	gap: 80px;
}
.installers_step_left {
	justify-content: flex-start;
	align-items: center;
	gap: 80px;
}
.installers_step_label {
	flex: 1;
}
.installers_step_label h3 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 8px;
}
.installers_step_label p {
	font-size: 25px;
	line-height: 1.6;
	margin: 0;
	max-width: 500px;
}

@media only screen and (max-width: 900px) {
	.installers_steps_inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	.installers_steps_heading {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media only screen and (max-width: 768px) {
	.residential_hero::before {	
		bottom: 256px;
	}
	.installers_step img {
		width: 140px;
	}
	.installers_step_img_wide {
		width: 190px!important;
	}
}

@media only screen and (max-width: 600px) {
	.installers_step {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;
	}
	.installers_step_left {
		flex-direction: column;
	}
	.installers_step img {
		width: 120px;
		order: -1;
	}
	.installers_step_img_wide {
		width: 160px!important;
	}
	.installers_step_label {
		flex: none;
		width: 100%;
		padding-bottom: 30px;
	}
	.installers_step_label p {
		max-width: 100%;
		font-size: 18px;
	}
	.installers_step_label h3 {
		font-size: 22px;
	}
}

/* ==========================================================================
   Residential — Packages (Mobile Swiper)
   ========================================================================== */
#packages .col-12 {
    margin: 0;
	width: 100%
}
.packages {
    background-color: var(--brand-dark-background);
}
.packages h2 {
    color: var(--brand-white);
}
.packages .sub_header_text {
    color: var(--brand-accent);
}
.package-slide {
    position: relative;
    padding-bottom: 76px;
    min-height: 580px;
}
.package-slide .package-bg {
    position: absolute;
    top: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-color: var(--brand-dark-background);
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: 390px;
}
.swiper-slide-active .package-slide .package-bg {
    opacity: 1;
    background-image: url(../img/packages_active_bg.svg);
}
.package-slide .package-name {
    width: 230px;
    height: 230px;
    margin: auto;
    border-radius: 100%;
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
    max-width: 130px;
    line-height: 1.1;
    text-align: center;
}
.swiper-slide-active .package-slide .package-name {
    color: var(--brand-dark-background);
}
.package-slide .package-description {
    padding-top: 35px;
    z-index: 5;
    position: relative;
    color: var(--brand-gray-medium);
    text-align: center;
    min-height: 300px;
}
.package-slide .package-description h3,
.package-slide .package-description .price-pm,
.package-slide .package-description p {
    color: var(--brand-gray-medium);
}
.swiper-slide-active .package-slide .package-description h3,
.swiper-slide-active .package-slide .package-description .price-pm,
.swiper-slide-active .package-slide .package-description p {
    color: var(--brand-dark-background);
}
.package-slide .package-description h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 800;
}
.package-slide .package-description .price-pm {
    font-weight: 400;
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 22px;
}
.package-slide .package-description .price-pm span {
    display: block;
	font-weight: 600;
}
.package-slide .package-description p {
    max-width: 230px;
    margin: 0 auto 25px;
    font-size: 20px;
    line-height: 22px;
}
.package-slide .package-description p:nth-of-type(1),
.package-slide .package-description p:nth-of-type(2) {
	font-size: 18px
}
.package-slide .package-description p:nth-of-type(3) {
	border-top: 2px solid var(--brand-dark-background);
	padding-top: 20px
}
.package-slide .package-btn-wrap {
    z-index: 5;
    position: relative;
    display: none;
}
.swiper-slide-active .package-slide .package-btn-wrap {
    display: block;
}

/* ==========================================================================
   Residential — Tooltips & What You Get
   ========================================================================== */
.what_you_get {
	display: none
}
.what_you_get h3 {
	color: var(--brand-dark-background)!important
}
.what_you_get h3 img,
.tooltipster-content h3 img {
	max-width: 32px!important;
	vertical-align: bottom;
}
.what_you_get ul,
.tooltipster-content ul {
	margin-left: 20px;
    padding: 0;
}
.what_you_get ul li,
.tooltipster-content ul li {
	font-weight: 300;
	margin-bottom: 8px
}
.what_you_get ul li,
.tooltipster-content ul li:nth-of-type(1) {
	list-style-type: none;
	margin-left: -20px;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-shadow-customized .tooltipster-content {
	padding: 25px
}
.tooltipster-content {
    overflow: visible !important;
}
.tooltipster-content h3 {
	font-size: 20px;
    font-weight: 500;
}
.tooltipster-content p {
	font-weight: 300;
	font-size: 17px;
	margin-bottom: 0
}

/* ==========================================================================
   Residential — Packages (Desktop Slider)
   ========================================================================== */
#package_slider,
#package_slider_2 {
	position: relative;
}
#package_slider .col-6,
#package_slider_2 .col-6 {
	margin-bottom: 0!important
}
#package_slider .swiper-nav,
#package_slider_2 .swiper-nav {
	top: 70px;
	transform: translateY(-50%);
}
#package_slider .swiper-nav .swiper-nav-inner,
#package_slider_2 .swiper-nav .swiper-nav-inner {
	width: 340px;
	max-width: 100%;
}
#package_slider .swiper-button-next.swiper-button-disabled,
#package_slider .swiper-button-prev.swiper-button-disabled,
#package_slider_2 .swiper-button-next.swiper-button-disabled,
#package_slider_2 .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-slide-active .package_slider .package_description,
.swiper-slide-next .package_slider .package_description {
    position: relative;
	z-index: 1;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-color: var(--brand-dark-background);
    background-image: url(../img/packages_active_bg.svg);
    aspect-ratio: 595.1 / 1338.6;
    opacity: 1;
    transition: opacity 0.6s ease-in;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: 300px;
}
.swiper-slide-next .package_slider .package_description {
	background-image: none
}
.swiper-slide-active .package_slider .package_description .package-name,
.swiper-slide-next .package_slider .package_description .package-name {
    width: 230px;
    height: 165px;
    margin: auto;
    border-radius: 100%;
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-dark-background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
    max-width: 130px;
    line-height: 1.1;
    text-align: center;
}
.swiper-slide-next .package_slider .package_description .package-name {
	color: var(--brand-accent);
}
.swiper-slide-active .package_slider .package_description .package_beam_content,
.swiper-slide-next .package_slider .package_description .package_beam_content {
	margin-top: 80px
}
.swiper-slide-active .package_slider .package_description h3,
.swiper-slide-next .package_slider .package_description h3 {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 46px;
    font-weight: 600;
}
.swiper-slide-next .package_slider .package_description h3 {
	color: var(--brand-gray-medium)
}
.swiper-slide-next .package_slider .package_description h3 .dirham_symbol {
	background: url(../img/dirham_symbol_gray.svg);
}
.swiper-slide-active .package_slider .package_description .package_beam_content .package_period,
.swiper-slide-next .package_slider .package_description .package_beam_content .package_period {
	color: var(--brand-dark-background);
	font-size: 24px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px
}
.swiper-slide-next .package_slider .package_description .package_beam_content .package_period {
	color: var(--brand-gray-medium)
}
.swiper-slide-active .package_slider .package_description .package_beam_content em,
.swiper-slide-next .package_slider .package_description .package_beam_content em {
	font-size: 16px;
	font-style: italic;
	max-width: 200px;
    display: block;
    margin: 0 auto;
}
.swiper-slide-next .package_slider .package_description .package_beam_content em {
	color: var(--brand-gray-medium)
}
.swiper-slide-active .package_slider .package_description .package_usage,
.swiper-slide-next .package_slider .package_description .package_usage {
    color: var(--brand-dark-background);
	max-width: 230px;
    margin: 40px auto 25px;
    font-size: 20px;
	font-weight: 400;
    line-height: 22px;
}
.swiper-slide-next .package_slider .package_description .package_usage,
.swiper-slide-next .package_slider .package_description .package_usage strong {
	color: var(--brand-gray-medium)
}

.package_slider .package_contents {
	text-align: left
}
.package_slider .package_contents h2 {
	color: var(--brand-dark-background);
	font-size: 58px;
	line-height: 70px;
	font-weight: 700
}
.package_slider .package_contents h2:nth-of-type(2) {
	font-size: 44px;
	line-height: 58px;
	margin-bottom: 20px;
	font-weight: 500
}
.package_slider .package_contents h2 svg {
	vertical-align: super;
	cursor: pointer
}
.package_slider .package_contents h3 {
	color: var(--brand-dark-background);
	font-size: 21px;
	line-height: 31px
}
.package_slider .package_contents h3 strong {
	color: var(--brand-dark-background);
}
.package_slider .package_contents p {
	color: var(--brand-dark-background);
	font-size: 25px;
	line-height: 28px;
	font-weight: 400;
	max-width: 410px;
    margin: 0 auto;

}
.package_slider .package_contents img {
    max-width: 500px;
}
.package_contents_columns {
	display: flex;
	justify-content: space-evenly;
	align-items: flex-start;
	gap: 40px;
}

@media only screen and (max-width: 690px) {
	.package_contents_columns {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
}
.package_contents_column {
	flex: 1;
	text-align: center;
}
.package_contents_plus {
	font-size: 36px;
	font-weight: 700;
	color: var(--brand-dark-background);
	line-height: 1;
	align-self: center;
}
.package_contents_column h4 {
	color: var(--brand-dark-background);
	font-size: 46px;
    font-weight: 600;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
    justify-content: center;
	gap: 10px;
}
.package_contents_column h4 span {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	text-align: left;
}
.package_contents_column h4 span:not(.dirham_symbol) {
	margin-bottom: 3px
}
.package_contents_column p {
	color: var(--brand-dark-background);
	font-size: 18px;
	margin: 0;
}

body:not(.commercial):not(.how-it-works) .swiper-nav {
	top: 45%
}
#package_description .swiper-nav,
#package_description_2 .swiper-nav,
#package_description_3 .swiper-nav {
	display: none
}

/* ==========================================================================
   Residential — Package Description Panels
   ========================================================================== */
.packages_description h4 {
    font-size: 46px;
    display: flex;
    align-items: center;
}
.packages_description h4 span {
	font-weight: 600;
}
.packages_description p {
    font-size: 20px;
    line-height: 30px;
}
.packages_description .period {
	display: block;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.packages_description .plus_icon {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    padding-top: 15px;
}
.packages_description_2 p {
	font-size: 30px;
	line-height: 40px
}
.packages_description_1 {
	background-color: var(--brand-accent-2);
}
.packages_description_2 {
	background-color: var(--brand-accent-3);
}
.packages_description .package_wrapper_decal {
	width: 65px;
    position: relative;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
}
.packages_description .squiggle_line {
	top: 25%;
    right: -83px;
    position: absolute;
    width: 130px;
}
.packages_description .package_illustration {
    position: relative;
    text-align: center;
}
.packages_description .package_illustration_details {
	max-width: 250px;
    margin: -15px auto 0;
}
.packages_description .package_illustration_details h6 {
	font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
}
.packages_description .package_illustration_details p {
    margin-top: 0;
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 300;
	line-height: 30px
}

/* ==========================================================================
   Residential — Package Hardware
   ========================================================================== */
.package_hardware .package_hardware_images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.package_hardware .package_hardware_images figure {
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    max-width: 300px;
    margin: 0;
}
.package_hardware .package_hardware_images figure.package_hardware_battery {
    display: none;
}
.package_hardware .package_hardware_images figure.package_hardware_battery.show {
    display: flex;
}
.package_hardware .package_hardware_images figure img {
    margin-top: auto;
    display: block;
    width: 100%;
    height: auto;
}
.package_hardware .package_hardware_images figure figcaption {
    margin-top: -20px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.package_hardware .package_hardware_images figure figcaption h3 {
	font-size: 21px;
	font-weight: 600
}
.package_hardware .package_hardware_images figure figcaption p {
	font-size: 21px;
	font-weight: 300;
	line-height: 1.3;
	margin-top: 5px;
}
.package_hardware .package_hardware_images figure figcaption p span {
	font-weight: 300;
}

/* ==========================================================================
   Residential — Process Arch Decal
   ========================================================================== */
.arch_line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ==========================================================================
   Residential — Contact Section
   ========================================================================== */
.contact h3 {
    font-size: 30px;
    font-weight: 600;
}
.contact input.brand {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
}
.contact .contact_section_2,
.contact .contact_section_3 {
    border-top: 1px solid var(--brand-gray-medium);
}
input[name="villa_community_other"] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* ==========================================================================
   Residential — Popups
   ========================================================================== */
.special_event_popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}
.special_event_popup_content {
    max-width: 1000px;
    max-height: 90%;
    border-radius: 10px;
}
.special_event_popup_close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--brand-white);
    cursor: pointer;
}
.signup_popup_overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.signup_popup_wrapper {
	position: relative;
	width: 90%;
	max-width: 600px;
}
.signup_popup_image {
	width: 100%;
	height: auto;
	display: block;
}
.signup_popup_content {
	position: absolute;
	bottom: 4%;
	right: 4%;
	transform: translateX(-50%);
	font-family: monospace;
	font-size: clamp(14px, 3vw, 20px);
}
.signup_popup_overlay #signup_code {
	color: var(--brand-white);
	cursor: text;
	user-select: text;
}
.signup_popup_close {
	position: absolute;
	top: 4%;
    right: 4%;
	font-size: 28px;
	color: var(--brand-dark-background);
	cursor: pointer;
	user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.signup_popup_close:hover {
	color: var(--brand-white)
}
@keyframes pulse_text {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

/* ==========================================================================
   Residential — Media Queries
   ========================================================================== */
#package_slider .col-6,
#package_slider_2 .col-6 {
	width: 100%;
	margin: 0;
}
.package_slider .package_contents {
	text-align: center;
	padding: 50px 20px;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	background-color: #ffc800;
	position: relative;
	z-index: 1;
}
.package_slider .package_contents::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 60px solid transparent;
	border-right: 60px solid transparent;
	border-top: 40px solid #ffc800;
	z-index: 2;
}

/* ==========================================================================
   Residential — Average production
   ========================================================================== */
.average_production {
	background-color: var(--brand-accent-3);
	position: relative;
	margin-top: -2px;
}
.average_production p {
	font-size: 25px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--brand-dark-background);
	margin: 0;
}
.average_production::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 60px solid transparent;
	border-right: 60px solid transparent;
	border-top: 40px solid var(--brand-accent-3);
	z-index: 2;
}
#package_average_production {
	font-weight: 700;
}
.package_slider .package_contents h2 {
	line-height: 1
}
.package_slider .package_contents svg.tooltip {
	animation: pulse_text 1.2s infinite ease-in-out;
	transform-origin: center;
}
.what_you_get {
	display: none;
	background-color: var(--brand-white);
	border-radius: 10px;
	margin: 0 auto;
	margin-bottom: 40px;
	padding: 20px;
	box-shadow: 0 .5rem 1rem #00000026!important;
	max-width: 800px
}
@media only screen and (max-width: 825px) {
    .gosolr.col-5 {
        width: 25%;
    }
    .gosolr.col-5:last-child {
        width: 100%;
    }
    .gosolr.col-5 div {
        max-width: 200px;
    }
}
@media only screen and (max-width: 719px) {
	.get_that_glow {
		padding-top: 0
	}
	.get_that_glow .row {
		text-align: center
	}
	.packages_description h4 {
	    display: block;
		text-align: center;
	}
	.packages_description p {
		text-align: center;
	}
	.packages_description .period br {
		display: none
	}
	.packages_description .period span {
		display: inline;
		margin-left: 5px
	}
	.packages_description .plus_icon {
		padding-top: 0
	}
	.packages_description .package_illustration_details h6 {
		text-align: center
	}
}
@media only screen and (max-width: 656px) {
	.packages_description .squiggle_line {
		right: -58px;
		width: 90px;
	}
}
@media only screen and (max-width: 625px) {
    .gosolr.col-5,
    .gosolr.col-5:last-child {
        width: 33.33%;
    }
    .gosolr.col-5:nth-child(4) {
        margin-left: 16.67%;
    }
}
@media only screen and (max-width: 495px) {
    .gosolr.col-5 {
        width: 50%;
    }
    .gosolr.col-5:nth-child(4) {
        width: 50%;
        margin-left: 0;
    }
    .gosolr.col-5:nth-child(5) {
        width: 100%;
    }
}
@media only screen and (max-width: 475px) {
	.signup_popup_content {
		font-size: inherit;
		bottom: 2%;
		right: -2%;
	}
}
@media only screen and (max-width: 400px) {
    .hero .sub_header_text {
        max-width: 320px;
    }
}
@media only screen and (max-width: 320px) {
    .gosolr.col-5 {
        width: 100% !important;
    }
}

/* CTA */
body.residential .cta {
	background-color: #f5f5f5;
	padding-top: 80px !important;
}
body.residential .cta .cta_content p {
	max-width: 600px;
}
@media only screen and (min-width: 1140px) {
	body.residential .cta .cta_content p {
		max-width: none;
		font-size: 26px;
		white-space: nowrap;
	}
}
body.residential .cta .cta_box_2 {
	position: static;
	transform: none;
	top: auto;
	left: auto;
	width: auto;
}
body.residential .cta .cta_box::after {
	bottom: -12px;
	left: 125px;
}
body.residential .cta_box {
	position: relative;
	max-width: 1152px;
	margin: 0 auto;
}
body.residential .cta_box img {
	bottom: -1px;
	position: relative;
}
@media only screen and (max-width: 769px) {
	body.residential .cta_box img {
		margin-top: 0;
		align-self: flex-end;
	}
	body.residential .cta .cta_content {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding-bottom: 30px !important;
	}
	body.residential .cta .cta_content p {
		margin-bottom: 0;
	}
}
@media only screen and (max-width: 740px) {
	body.residential .cta_box img {
		margin-left: 68px;
	}
}
@media only screen and (max-width: 515px) {
	body.residential .cta .cta_content {
		align-items: center;
		padding-top: 0 !important;
		padding-bottom: 20px!important;
	}
}

/* ==========================================================================
   Residential — Mobile type scale
   Placed last so it wins on source order; these paragraphs otherwise render at
   desktop sizes on a phone, fitting only ~26 characters per line.
   ========================================================================== */
@media only screen and (max-width: 769px) {
	.select_your_power .sub_header_text {
		font-size: 18px;
	}
	.package_slider .package_contents p {
		font-size: 18px;
		line-height: 1.5;
	}
	.average_production p {
		font-size: 18px;
	}
}
