:root {
  --primary-color: #0a2c48;
  --secondary-color: #00a5b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-family: "Poppins", sans-serif;
  --font-size: 14px;
  --font-weight: 400;
  --line-height: 1.5;
  --border-radius-5: 5px;
  --border-radius-10: 10px;
  --border-radius-15: 15px;
  --border-radius-20: 20px;
  --border-radius-25: 25px;
  --border-radius-30: 30px;
  --border-radius-35: 35px;
  --border-radius-40: 40px;
  --border-radius-45: 45px;
  --border-radius-50: 50px;
  --box-shadow-5: 0 2px 5px rgba(0, 0, 0, 0.1);
  --box-shadow-10: 0 4px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-15: 0 6px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-20: 0 8px 20px rgba(0, 0, 0, 0.1);
  --box-shadow-25: 0 10px 25px rgba(0, 0, 0, 0.1);
  --box-shadow-30: 0 12px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-35: 0 14px 35px rgba(0, 0, 0, 0.1);
  --box-shadow-40: 0 16px 40px rgba(0, 0, 0, 0.1);
  --box-shadow-45: 0 18px 45px rgba(0, 0, 0, 0.1);
  --box-shadow-50: 0 20px 50px rgba(0, 0, 0, 0.1);
  --font-size-10: 10px;
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-26: 26px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-35: 35px;
  --font-size-40: 40px;
  --font-size-45: 45px;
  --font-size-50: 50px;
  --font-weight-100: 100;
  --font-weight-200: 200;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-weight-900: 900;
  --transition-speed: 0.3s;
  --transition-speed-5: 0.5s;
  --transition-speed-10: 1s;
  --transition-speed-15: 1.5s;
  --transition-speed-20: 2s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-moz-selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

::selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  color: var(--dark-color);
  background-color: var(--white-color);
}

.logo_clr {
  color: var(--primary-color);
}

.logo_sec {
  color: var(--secondary-color);
}

.logo_bgClr {
  background-color: var(--primary-color);
}

.logo_bgSec {
  background-color: var(--secondary-color);
}

a {
  text-decoration: none;
}

.hero_btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: var(--border-radius-5);
  transition: var(--transition-speed);
  border: none;
  text-transform: capitalize;
  cursor: pointer;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-500);
  display: flex;
  gap: 10px;
}
.hero_btn:focus-visible, .hero_btn:active, .hero_btn:focus-within {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: scale(0.98);
}
.hero_btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.hero_btn.primaryBtn {
  background-color: #f0f8ff;
  color: var(--primary-color);
}
.hero_btn.primaryBtn:focus-visible, .hero_btn.primaryBtn:active, .hero_btn.primaryBtn:focus-within {
  background-color: var(--secondary-color);
  color: var(--white-color);
  transform: scale(0.98);
}
.hero_btn.primaryBtn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.hero_btn.secBtn {
  background-color: #ebfffd;
  color: var(--secondary-color);
}
.hero_btn.secBtn:focus-visible, .hero_btn.secBtn:active, .hero_btn.secBtn:focus-within {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: scale(0.98);
}
.hero_btn.secBtn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.hero_btn.outline {
  background-color: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.hero_btn.outline:focus-visible, .hero_btn.outline:active, .hero_btn.outline:focus-within {
  background-color: var(--secondary-color);
  color: var(--white-color);
  transform: scale(0.98);
}
.hero_btn.outline:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.container {
  max-width: 1280px;
}

.top_bar {
  background: linear-gradient(to right, rgba(255, 153, 51, 0.5), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.5));
  font-size: var(--font-size-14);
  text-transform: capitalize;
  transition: var(--transition-speed);
}

.top_bar_swiper {
  font-weight: var(--font-weight-400);
  text-transform: capitalize;
  transition: var(--transition-speed);
  height: 30px;
}
.top_bar_swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .nav_logo {
  width: 220px;
}
.navbar .navbar-nav {
  gap: 15px;
}
.navbar .navbar-nav .nav-link {
  color: var(--dark-color);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-500);
  text-transform: capitalize;
  transition: var(--transition-speed);
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}
.navbar .navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

header {
  position: relative;
}
header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.7), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.7));
}

#hero__section {
  position: relative;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.1), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.1));
}
#hero__section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.7), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.7));
}
#hero__section.height {
  background: var(--white-color);
}
#hero__section.height::after {
  height: 5px;
}

.bg__clr {
  background: linear-gradient(to right, rgba(255, 153, 51, 0.05), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.05));
}

.hero_title {
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-700);
  text-transform: capitalize;
  transition: var(--transition-speed);
  color: var(--primary-color);
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .hero_title {
    font-size: var(--font-size-24);
  }
}
@media screen and (max-width: 576px) {
  .hero_title {
    font-size: var(--font-size-20);
  }
}

.header_icon {
  padding: 5px 10px;
  background: #ebfffd;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .header_icon {
    font-size: var(--font-size-12);
  }
  .header_icon span {
    font-size: var(--font-size-16);
  }
}

.hero_title span {
  color: var(--secondary-color);
}

.hero_subtitle {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-400);
  text-transform: capitalize;
  transition: var(--transition-speed);
  color: var(--dark-color);
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .hero_subtitle {
    font-size: var(--font-size-14);
  }
}

#benifits__section {
  padding: 5rem 0;
  position: relative;
}
@media screen and (max-width: 576px) {
  #benifits__section {
    padding: 3rem 0;
  }
}
#benifits__section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.7), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.7));
}
#benifits__section .benifits__wrapper {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 153, 51, 0.15);
}
#benifits__section .benifits__wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 153, 51, 0.35);
}
#benifits__section .benifits__wrapper span {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 2.5rem;
}

#how_it_works {
  padding: 5rem 0;
  position: relative;
}
@media screen and (max-width: 576px) {
  #how_it_works {
    padding: 3rem 0;
  }
}
#how_it_works::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.7), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.7));
}
#how_it_works .how_it_works_left {
  border-left: 1px solid var(--primary-color);
  padding-left: 20px;
}
#how_it_works .how_it_works_left .hiw_inner {
  margin-bottom: 20px;
  position: relative;
}
#how_it_works .how_it_works_left .hiw_inner h3 {
  color: var(--secondary-color);
  line-height: 1;
}
#how_it_works .how_it_works_left .hiw_inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--secondary-color);
  left: -28px;
}
#how_it_works .how_it_works_right {
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 153, 51, 0.15);
}
#how_it_works .how_it_works_right .hiw_img {
  height: 350px;
  overflow: hidden;
  position: relative;
}
#how_it_works .how_it_works_right .hiw_img .video__play {
  position: absolute;
  z-index: 11;
  background: rgba(0, 0, 0, 0.4117647059);
  top: 50%;
  left: 50%;
  color: var(--secondary-color);
  display: block;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 85px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
#how_it_works .how_it_works_right .hiw_img .video__play span {
  font-size: 4rem;
  line-height: 70px;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step.active {
  background: var(--primary-color);
  color: #fff;
}

.line {
  width: 40px;
  height: 2px;
  background: #dee2e6;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.bill-btn,
.home-btn,
.time-btn {
  font-size: 14px;
  line-height: 1px;
  align-items: center;
  height: 30px;
}

.bill-btn.active,
.home-btn.active {
  background: var(--primary-color);
  color: #fff;
}

.btn-close {
  position: absolute;
  top: -16px;
  right: -16px;
  opacity: 1;
  width: 2em;
  height: 2em;
  background: #ffffff var(--bs-btn-close-bg) center/1.3em auto no-repeat;
  border: 1px solid #000;
}

.form-control {
  border: 1px solid rgba(0, 166, 184, 0.3490196078);
  font-size: var(--font-size-14);
  padding: 10px 15px;
}
.form-control:focus {
  box-shadow: unset;
}

#solar__system {
  padding: 5rem 0;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.12), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.12));
}
@media screen and (max-width: 576px) {
  #solar__system {
    padding: 3rem 0;
  }
}
#solar__system .solar__system .solar__system_wrapper {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 153, 51, 0.15);
}
#solar__system .solar__system .solar__system_wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 153, 51, 0.35);
}
#solar__system .solar__system .solar__system_wrapper ul li {
  margin-bottom: 10px;
}
#solar__system .solar__system .solar__system_wrapper ul li span {
  margin-right: 10px;
}
#solar__system .solar__system .solar__system_wrapper ul li:last-child {
  margin-bottom: 0;
}

#cta {
  padding: 5rem 0;
  background: url(../images/cta_bg.png) no-repeat bottom center/cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  #cta {
    background-size: 100%;
    padding: 4rem 0;
  }
}
#cta::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}

#why__choose {
  padding: 5rem 0;
  position: relative;
}
@media screen and (max-width: 576px) {
  #why__choose {
    padding: 3rem 0;
  }
}
#why__choose::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.7), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.7));
}
#why__choose::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.7), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.7));
}
#why__choose .why_chooseWrapper {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 153, 51, 0.15);
}
#why__choose .why_chooseWrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 153, 51, 0.35);
}
#why__choose .why_chooseWrapper span.icon_view {
  display: flex;
  margin: 0 auto 15px;
  color: var(--secondary-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-color);
  text-align: center;
  line-height: 70px;
  justify-content: center;
  align-items: center;
}

#iyro__advantage {
  background-color: var(--primary-color);
  padding: 3rem 0;
}
#iyro__advantage .iyro__advantage__card {
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 153, 51, 0.718);
  text-align: center;
  background-color: rgba(0, 166, 184, 0.0901960784);
}
#iyro__advantage .iyro__advantage__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 153, 51, 0.807);
}
#iyro__advantage .iyro__advantage__card .iyro__advantage__card__content .iyro__advantage__card__title {
  color: var(--secondary-color);
  line-height: 1;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#iyro__advantage .iyro__advantage__card .iyro__advantage__card__content .iyro__advantage__card__description {
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
  color: #fff;
  opacity: 0.5;
}

#footer {
  background-color: var(--secondary-color);
  padding: 3rem 0 1rem;
}
#footer .footer img {
  width: 75%;
}
#footer .footer p {
  margin-top: 20px;
  opacity: 8;
  color: white;
}
#footer .footer .footer__contentSocial h3,
#footer .footer .footer__content h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 20px;
  color: var(--white-color);
}
#footer .footer .footer__contentSocial ul,
#footer .footer .footer__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer .footer__contentSocial ul li,
#footer .footer .footer__content ul li {
  margin-bottom: 10px;
}
#footer .footer .footer__contentSocial ul li a,
#footer .footer .footer__content ul li a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
#footer .footer .footer__contentSocial ul li a:hover,
#footer .footer .footer__content ul li a:hover {
  opacity: 1;
}

#faq {
  padding: 5rem 0;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.12), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.12));
}
@media screen and (max-width: 576px) {
  #faq {
    padding: 3rem 0;
  }
}
#faq .faq .faq__wrapper {
  display: flex;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 153, 51, 0.15);
}
#faq .faq .faq__wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 153, 51, 0.35);
}
#faq .faq .faq__wrapper .faq__question {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}
#faq .faq .faq__wrapper .faq__question span {
  color: var(--primary-color);
}
@media screen and (max-width: 576px) {
  #faq .faq .faq__wrapper .faq__question {
    font-size: var(--font-size-16);
  }
}
#faq .faq .faq__wrapper .faq__answer {
  margin-bottom: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

#financing {
  padding: 5rem 0;
}
@media screen and (max-width: 576px) {
  #financing {
    padding: 3rem 0;
  }
}
#financing .financing__wrapper .financing__icon {
  display: flex;
  color: var(--secondary-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-color);
  text-align: center;
  line-height: 70px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  #financing .financing__wrapper .financing__icon {
    width: 50px;
    height: 50px;
    background: #f1feff;
  }
}
#financing .contact__section {
  background-color: rgba(255, 153, 51, 0.05);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 153, 51, 0.15);
}
@media screen and (max-width: 576px) {
  #financing .contact__section {
    margin-top: 20px;
  }
}

@media screen and (max-width: 576px) {
  h3.fs-5 {
    font-size: var(--font-size-16) !important;
  }
}
@media screen and (max-width: 576px) {
  h3.fs-3 {
    font-size: var(--font-size-20) !important;
  }
}/*# sourceMappingURL=style.css.map */