/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
.hamburger {
  cursor: pointer;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: #36A770;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.cards {
  perspective: 500px;
}

.card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 1.5s;
}

.card2 {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 1.5s;
}

.card:hover {
  transform: translateZ(1.5px) rotateX(3deg) rotateY(3deg);
}

.card2:hover {
  transform: translateZ(1.5px) rotateX(3deg) rotateY(-3deg);
}

/* Variables */
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: #E0E0E0;
}

.nav-bar-container {
  width: 62vw;
  margin: auto;
  padding: 1em;
}
@media (min-width: 20em) and (max-width: 93.74em) {
  .nav-bar-container {
    width: 90vw;
  }
}

.mobile-navigation {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  top: 0px;
  left: -250px; /* Initially hidden off-screen */
  width: 250px;
  height: 100%;
  z-index: 1;
  background-color: #E0E0E0;
  border-right: 1px solid #D9D9D9;
  transition: left 0.3s ease; /* Smooth transition */
}

ul {
  padding: 0;
  margin-top: 5em;
  list-style-type: none;
}

li {
  margin: 2em;
  margin-bottom: 3em;
}

.mobile-navigation-links {
  font-weight: 700 !important;
  text-align: center !important;
}

p {
  margin-top: 2.5em;
  font-size: 0.7em;
  opacity: 0.6;
}

.built-by-img {
  margin-left: 1.05em;
}

.mobile-navigation.active {
  left: 0;
}

@media (min-width: 20em) and (max-width: 35.49em) {
  .nav-bar-container .navigation-buttons-container a {
    display: none;
  }
  .nav-bar-container .navigation-button-hamburger-container {
    display: block;
    align-items: center;
    margin-top: 1em;
  }
}
@media (min-width: 35.5em) and (max-width: 241.24em) {
  .nav-bar-container .navigation-button-hamburger-container {
    display: none;
  }
}

.nav-bar-main {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #D9D9D9;
}

.logotype-container {
  padding-bottom: 1em;
}

#logotype-nav-bar {
  width: 6.18em;
  height: 4.56em;
}

.navigation-buttons-container {
  display: flex;
  flex: 2;
  padding-bottom: 1em;
  margin-left: auto;
  align-items: center;
}

a {
  margin-right: 3.18em;
  font-size: 1em;
  font-weight: 500;
  color: #555555;
  text-decoration: none;
}

a:last-child {
  margin-right: 0;
}

.underline-animation {
  position: relative;
  text-decoration: none;
  color: #555555;
}

.underline-animation::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  color: #555555;
  background-color: #36A770;
  transition: width 0.3s ease;
}

.underline-animation:hover::before {
  width: 100%;
  color: #2C2C2C;
}

a:hover {
  color: #2C2C2C;
}

.navigation-buttons-container a:first-child {
  margin-left: auto;
}

.hero-section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 62vw;
  height: 45vh;
  margin: auto;
  padding: 1em;
}
@media (min-width: 20em) and (max-width: 93.74em) {
  .hero-section-container {
    width: 90vw;
  }
}

@media (min-width: 20em) and (max-width: 35.49em) {
  .hero-section-container .hero-section-right-wrapper {
    display: none;
  }
  .hero-section-container .hero-section-left-wrapper {
    margin: auto;
    margin-top: 1em;
    width: 100%;
  }
}

@keyframes scaleAnimation {
  0% {
    transform: scale(0.7); /* Start with half the original size */
  }
  100% {
    transform: scale(1); /* Scale up to the original size */
  }
}
.hero-section-right-wrapper {
  margin-top: 5em;
  margin-right: 5em;
  animation: scaleAnimation 4s ease;
}

.hero-section-left-wrapper {
  padding: 1em;
  padding-left: 0;
  width: 53em;
}

.hero-section-h1-hero-text {
  margin-right: 6em;
  margin-bottom: 0.7em;
  font-size: 2.25em;
  color: #2C2C2C;
  font-weight: 900;
}
@media (min-width: 20em) and (max-width: 35.49em) {
  .hero-section-h1-hero-text {
    width: 9em;
  }
}

.h1-color {
  color: #36A770;
}

.hero-section-p-text {
  margin-top: 0;
  margin-right: 5em;
  font-size: 1.25em;
  color: #555555;
  font-weight: 500;
  opacity: 1 !important;
}
@media (min-width: 20em) and (max-width: 35.49em) {
  .hero-section-p-text {
    width: 17em;
    margin: auto;
    margin-left: 0;
  }
}

.why-solar-section-container {
  display: flex;
  flex-direction: row;
  width: 62vw;
  margin: auto;
  padding: 1em;
}
@media (min-width: 20em) and (max-width: 93.74em) {
  .why-solar-section-container {
    width: 90vw;
    flex-direction: column;
  }
}

.hero-reasons-container {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  grid-template-rows: repeat(2, 1fr); /* Two rows */
  gap: 2.12em; /* Gap between grid items */
}
@media (min-width: 20em) and (max-width: 35.49em) {
  .hero-reasons-container {
    display: flex;
    flex-direction: column;
  }
}

.hero-reason-box {
  align-items: center;
  height: 16.56em;
  background-color: #D9D9D9;
}

.hero-reason-text-container {
  width: 63%;
  padding: 1em;
}
@media (min-width: 20em) and (max-width: 35.49em) {
  .hero-reason-text-container {
    width: 50%;
    margin-left: 0.75em;
    padding: 0;
  }
}

.hero-reason-h1-text {
  font-weight: 900;
  font-size: 1.5em;
}

.hero-reason-p-text {
  font-weight: 500;
  font-size: 0.87em;
}
@media (min-width: 20em) and (max-width: 35.49em) {
  .hero-reason-p-text {
    font-size: 0.62em;
    width: 15em;
  }
}

.hero-reason-img-container {
  right: 0px;
  top: 0px;
  position: absolute;
}

.hero-reason-text-container-cta {
  top: 1em;
  position: absolute;
  text-align: center;
  margin: auto;
}

.hero-reason-h1-text-cta {
  font-weight: 900;
}

.hero-reason-p-text-cta {
  font-weight: 500;
  font-size: 0.87em;
  margin-left: 4em;
  margin-right: 4em;
}
@media (min-width: 20em) and (max-width: 35.49em) {
  .hero-reason-p-text-cta {
    position: relative;
    top: -1em;
  }
}

.open-form-btn {
  position: absolute;
  width: 280px;
  height: 51px;
  background: #36A770;
  color: #D9D9D9;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 12em;
  z-index: 1;
  border: none;
}

.open-form-btn:hover {
  color: white;
  background: #41c987 !important;
  cursor: pointer !important;
}

.open-form-btn {
  transition: 0.5s ease;
}

.about-us-section-container {
  background-color: #D9D9D9;
  align-items: center;
  display: flex;
  margin-top: 10em;
  height: 30.62em;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .about-us-section-container {
    height: 56.56em;
  }
}

.about-us-content-wrapper {
  display: flex;
  flex-direction: row;
  width: 62vw;
  margin: auto;
  padding: 1em;
  width: 62vw;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .about-us-content-wrapper {
    width: 90vw;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 64em) and (max-width: 93.74em) {
  .about-us-content-wrapper {
    width: 90vw;
  }
}

.about-us-graphic-container-wrapper {
  width: 100%;
}
.about-us-graphic-container-wrapper img {
  width: 100%;
}
@media (min-width: 20em) and (max-width: 35.49em) {
  .about-us-graphic-container-wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.about-us-content-right {
  margin-left: 3.62em;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .about-us-content-right {
    margin-left: 0;
  }
}

.about-us-h1-text {
  font-size: 2.25em;
  color: #2C2C2C;
  font-weight: 900;
}
@media (min-width: 20em) and (max-width: 93.74em) {
  .about-us-h1-text {
    font-size: 1.87em;
  }
}

.about-us-p-text {
  font-weight: 500;
  font-size: 0.87em;
  width: 90%;
}

.services-section-container {
  display: flex;
  flex-direction: row;
  width: 62vw;
  height: 36em;
  margin: auto;
  padding: 1em;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .services-section-container {
    width: 90vw;
    height: 850px;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 64em) and (max-width: 93.74em) {
  .services-section-container {
    width: 90vw;
  }
}

.services-wrapper {
  display: flex;
  flex-direction: row;
  padding-top: 9em;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .services-wrapper {
    width: 90vw;
    flex-direction: column;
    align-items: center;
    padding-top: 4.5em;
  }
}

.services-content-left-wrapper {
  width: 42.68em;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .services-content-left-wrapper {
    width: 90vw;
    flex-direction: column;
    align-items: center;
  }
}

.services-h1-text {
  font-size: 2.25em;
  color: #2C2C2C;
  font-weight: 900;
}
@media (min-width: 20em) and (max-width: 93.74em) {
  .services-h1-text {
    font-size: 1.87em;
  }
}

.services-p-text {
  font-size: 1.25em;
  color: #555555;
  font-weight: 500;
  width: 90%;
  opacity: 1 !important;
}
@media (min-width: 20em) and (max-width: 93.74em) {
  .services-p-text {
    font-size: 0.87em;
  }
}

.services-img-diagram {
  padding-top: 2em;
  width: 85%;
}

.services-scrolling-divs-wrapper {
  width: 800px; /* Set a fixed width */
  height: 800px;
  overflow-x: hidden; /* Enable horizontal scrolling */
  white-space: nowrap; /* Ensure containers stay in a single line */
  padding-top: 9em;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .services-scrolling-divs-wrapper {
    width: 90vw;
    padding-top: 2em;
  }
}

.scrolling-content {
  width: 100%; /* Adjust width to fit content */
  height: 100%;
}

.scrolling-container {
  width: 800px;
  overflow-x: scroll;
  overflow-y: hidden;
}

.services-box {
  display: inline-block;
  width: 20em;
  height: 26em;
  grid-template-rows: repeat(2, 1fr); /* Two rows */
  margin-right: 2em;
  background-color: #D9D9D9;
  text-align: center;
}

.services-box-h1-text {
  color: #2C2C2C;
  font-weight: 900;
  white-space: normal !important;
}

.services-box-p-text {
  color: #555555;
  font-weight: 500;
  font-size: 0.87em;
  opacity: 1 !important;
  margin: auto;
  width: 90%;
  white-space: normal !important;
}

.services-box > img {
  width: 100%;
}

.contact-section-container {
  display: flex;
  flex-direction: column;
  width: 62vw;
  height: 28em;
  margin: auto;
  padding: 1em;
  padding-top: 8em;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .contact-section-container {
    padding-top: 2em;
    width: 90vw;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 64em) and (max-width: 93.74em) {
  .contact-section-container {
    width: 90vw;
  }
}

.contact-section-content-top {
  display: flex;
  flex-direction: column;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .contact-section-content-top {
    text-align: center;
  }
}

.contact-h1-top {
  font-size: 2.25em;
  color: #2C2C2C;
  font-weight: 900;
}
@media (min-width: 20em) and (max-width: 93.74em) {
  .contact-h1-top {
    font-size: 1.87em;
  }
}

.contact-p-top {
  font-size: 1.25em;
  color: #555555;
  font-weight: 500;
  width: 70%;
  opacity: 1 !important;
  margin-top: 0;
}
@media (min-width: 20em) and (max-width: 93.74em) {
  .contact-p-top {
    font-size: 0.87em;
    margin: auto;
    width: 90%;
  }
}

.contact-section-content-mid {
  display: flex;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .contact-section-content-mid {
    flex-direction: column;
    text-align: center;
  }
}

.contact-option-icon {
  margin-top: 1.5em;
}

.contact-option-wrapper {
  display: inline-block;
  width: 16.5em;
  height: 10.12em;
  margin-left: 2em;
  margin-right: 2em;
}

.contact-method-h1 {
  font-weight: 900;
  font-size: 1.5em;
  margin-bottom: 0;
}

.contact-method-p {
  font-weight: 500;
  font-size: 0.75em;
  margin-top: 1em;
}

.contact-method {
  font-weight: 900;
  font-size: 0.9em;
  color: #36A770;
  opacity: 1 !important;
}

.contact-section-content-cta {
  display: flex;
  height: 10em;
  padding-top: 5em;
  padding-bottom: 5em;
}

.open-form-btn-02 {
  position: relative;
  width: 280px;
  height: 51px;
  background: #36A770;
  color: #D9D9D9;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  z-index: 1;
  border: none;
}

.open-form-btn-02:hover {
  color: white;
  background: #41c987 !important;
  cursor: pointer !important;
}

.open-form-btn-02 {
  transition: 0.5s ease;
}

.footer-section-container {
  display: flex;
  flex-direction: row;
  height: 30em;
  margin: auto;
  margin-top: 100px;
  background-color: #D9D9D9;
}
.footer-section-container .footer-section-left {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.footer-section-container .footer-section-left img {
  width: 104px;
  height: 74px;
  margin: 20px;
  margin-bottom: 140px;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .footer-section-container .footer-section-left img {
    display: block;
    margin: 0 auto;
  }
}
.footer-section-container .footer-section-left p {
  margin: 5px;
}
.footer-section-container .footer-section-left .footer-address {
  font-size: 16px;
  margin-top: 22px;
}
.footer-section-container .footer-section-right {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.footer-section-container .footer-section-right img {
  width: 301px;
  height: 72px;
  margin: 20px;
  margin-left: 0;
}
.footer-section-container .footer-section-right .footer-text {
  width: 350px;
}
@media (min-width: 20em) and (max-width: 63.99em) {
  .footer-section-container {
    flex-direction: column;
    text-align: center;
    top: 550px;
    padding: 2em;
    position: relative;
  }
}/*# sourceMappingURL=style.css.map */