:root {
  --black: #202636;
  --white: #fff;
  --dark-grey: #737b8f;
  --blue: #0052b4;
  --green: #36b16f;
  --yellow: #ffd84d;
}

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

body {
  background-color: #f7f8fb;
  overflow-x: hidden;
}

.home-hero {
  height: 50rem;
  width: 100% !important;
  max-width: 100%;
  background-image: url(../images/home-hero.png);
  background-size: cover;
  background-position: bottom;
  box-shadow: 0 58px 152px 0 rgba(0, 107, 184, 0.42);
  padding: 2.5rem 9.75rem;
  position: relative;
}

@media (max-width: 1240px) {
  .home-hero {
    padding: 2.5rem;
  }
}

.home-hero header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.home-hero header .header-logo {
  width: 10rem;
}

.home-hero header .large-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.home-hero header a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  font-family: "Rajdhani";
}

@media (max-width: 1024px) {
  .home-hero header nav {
    gap: 1.5rem;
  }

  .home-hero header a {
    font-size: 1rem;
  }
}

.home-hero header .contact-link {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.home-hero header .contact-link .contact-arrow {
  width: 1.5rem;
  height: 1.5rem;
}

.home-hero .home-hero-main-section {
  width: 100%;
  max-width: 100%;
  margin-top: 6.5rem;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .home-hero .home-hero-main-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
  }

  .home-hero .home-hero-main-section .info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-hero .home-hero-main-section .info h3,
  .home-hero .home-hero-main-section .info p,
  .home-hero .home-hero-main-section .info a {
    text-align: center;
  }
}

.home-hero .home-hero-main-section .heading h2 {
  margin-top: 1rem;
  color: var(--yellow);
  font-family: "Rajdhani";
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.home-hero .home-hero-main-section .heading h1 {
  color: var(--white);
  font-family: "Rajdhani";
  font-size: 5rem;
  font-weight: 700;
  line-height: 5.75rem;
  width: 40rem;
}

@media (max-width: 1024px) {
  .home-hero .home-hero-main-section .heading h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

.home-hero .home-hero-main-section .info {
  width: 25rem;
  max-width: 70%;
}

.home-hero .home-hero-main-section .info h3 {
  color: var(--white);
  font-family: "Rajdhani";
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
}

.home-hero .home-hero-main-section .info p,
.home-hero .home-hero-main-section .info a {
  margin-top: 1rem;
  color: #eaf9fd;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5rem;
  font-style: normal;
}

.home-hero .home-hero-main-section .info .contact-btn {
  display: block;
  margin-top: 2.5rem;
  width: 12rem;
  height: 3rem;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 3rem;
  box-shadow: 0 82px 235px 0 rgba(0, 48, 121, 0.21);
  backdrop-filter: blur(35px);
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: all 0.5s;
}

.home-hero .home-hero-main-section .info .contact-btn:hover {
  background-color: var(--white);
  color: var(--black);
}

@media (max-width: 768px) {
  .home-hero .home-hero-main-section .info,
  .home-hero .home-hero-main-section .heading h1,
  .home-hero .home-hero-main-section .heading h2 {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    text-align: center;
    background-color: #0052b480;
  }
}

.home-hero .home-hero-customers {
  display: flex;
  flex-direction: column;
  width: 22rem;
  padding: 2.25rem 2rem 2rem 2rem;
  align-items: center;
  gap: 3.5rem;
  border-radius: 1.5rem;
  background-color: #ffffff80;
  box-shadow: 0 80px 232px 0 rgba(0, 48, 121, 0.24);
  backdrop-filter: blur(40px);
  position: absolute;
  bottom: -5.75rem;
}

@media (max-width: 1024px) {
  .home-hero .home-hero-customers {
    left: 2.5rem;
    bottom: -15rem;
  }

  .home-hero .home-hero-tagline {
    transform: translateY(80%);
    border-top-right-radius: 0 !important;
  }
}

@media (max-width: 768px) {
  .home-hero .home-hero-customers {
    display: none;
  }

  .home-hero .home-hero-tagline {
    left: 0 !important;
    right: 0;
    width: 100%;
    max-width: 100% !important;
  }
}

.home-hero .home-hero-customers h2 {
  color: var(--black);
  text-align: center;
  font-family: "Rajdhani";
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.5rem;
  width: 70%;
}

.home-hero .home-hero-customers h2 span {
  color: var(--blue);
  font-size: 2rem;
}

.home-hero .home-hero-customers img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.home-hero .home-hero-tagline {
  position: absolute;
  left: 31.75rem;
  bottom: 0;
  background-color: #0052b4;
  opacity: 0.8;
  padding: 2.5rem 4rem 2.5rem 4rem;
  border-top-right-radius: 30rem;
  border-top: 4px solid #83e9ff;
  max-width: 50%;
}

@media (max-width: 1240px) {
  .home-hero .home-hero-tagline {
    left: 24.5rem;
    padding: 1rem;
  }
}

.home-hero .home-hero-tagline p {
  color: var(--white);
  line-height: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  width: 40rem;
  max-width: 70%;
}

.small-nav {
  display: none !important;
}

.hide {
  display: none !important;
}

@media (max-width: 768px) {
  nav.large-nav,
  .header-logo,
  header .contact-link {
    display: none !important;
  }

  .small-nav {
    display: flex !important;
    width: 100%;
    height: 3rem;
    justify-content: space-between;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile-nav-logo {
    height: 2.5rem;
  }

  #hamburger-icon {
    display: block !important;
  }

  .mobile-menu.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    z-index: 1;
  }

  #hamburger-icon.open .bar1 {
    transform: rotate(45deg);
    top: 8px;
  }

  #hamburger-icon.open .bar2 {
    opacity: 0;
  }

  #hamburger-icon.open .bar3 {
    transform: rotate(-45deg);
    top: -8px;
  }
}

#hamburger-icon {
  display: none;
  cursor: pointer;
  padding: 10px;
}

#hamburger-icon .bar {
  display: block;
  position: relative;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.small-nav {
  display: none;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 6rem;
  right: 0;
  background-color: var(--white);
  width: 80%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
  color: var(--black) !important;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  display: block;
}

.cloud-top {
  position: absolute;
  right: 0;
  overflow: hidden;
  width: 30rem;
}

.local-area-section {
  padding: 15rem 9.75rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  grid-template-areas: "wind heading heading" "wind learn-more learn-more" "wind renewable body";
  gap: 3rem;
}

@media (max-width: 1240px) {
  .local-area-section {
    padding: 15rem 2.5rem;
  }
}

@media (max-width: 1024px) {
  .local-area-section {
    padding: 25rem 2.5rem 15rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "heading heading" "wind renewable" "body body" "learn-more learn-more";
  }

  .local-energy-plans {
    transform: translateY(100%);
  }
}

.local-area-section .local-wind-turbine {
  grid-area: wind;
  width: 100%;
  border-radius: 1.5rem;
}

.local-area-section h2,
.whole-energy-section h2,
.energy-futures-section h2,
.benefits-section .info .heading h2 {
  grid-area: heading;
  color: var(--black);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 4.25rem;
  font-family: "Rajdhani";
}

.local-area-section a,
.whole-energy-section a,
.energy-futures-section a,
.benefits-section .info a,
.home-blog-section .blogs-container .blog a {
  grid-area: learn-more;
  font-family: "Rajdhani";
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.local-area-section a p,
.whole-energy-section a p,
.energy-futures-section a p,
.benefits-section .info a p,
.home-blog-section .blog a p {
  color: var(--blue);
}

.local-area-section a img,
.whole-energy-section a img,
.energy-futures-section a img,
.benefits-section .info a img,
.home-blog-section .blog a img {
  width: 1.5rem;
  height: 1.5rem;
}

.local-area-section .local-energy-plans {
  grid-area: renewable;
  width: 100%;
  margin-left: -10rem;
  margin-bottom: -3rem;
  border-radius: 1.5rem;
}

.local-area-section p,
.whole-energy-section p,
.energy-futures-section p,
.benefits-section .info p {
  grid-area: body;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.75rem;
  color: var(--dark-grey);
}

.whole-energy-section {
  padding: 0 9.75rem 15rem 9.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "heading earth" "learn-more earth" "body earth";
  position: relative;
}

@media (max-width: 1240px) {
  .whole-energy-section {
    padding: 0 2.5rem 15rem 2.5rem;
  }
}

@media (max-width: 1024px) {
  .whole-energy-section {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "body" "learn-more";
    gap: 2rem;
  }

  .whole-energy-section .earth-gas {
    display: none;
  }
}

.whole-energy-section .earth-gas {
  grid-area: earth;
  width: 100%;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.whole-energy-section .lightning {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8.5rem;
  height: 8.5rem;
}

.energy-futures-section {
  padding: 0 9.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 1240px) {
  .energy-futures-section {
    padding: 0 2.5rem;
  }
}

@media (max-width: 1240px) {
  .energy-futures-section {
    padding: 0 2.5rem;
  }
}

@media (max-width: 1024px) {
  .energy-futures-section {
    grid-template-columns: 1fr;
  }

  .energy-futures-section .lightning {
    display: none;
  }
}

.energy-futures-section a {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.energy-futures-section .energy-futures {
  border-radius: 1.5rem;
  width: 100%;
}

.energy-futures-section .energy-futures-images {
  position: relative;
  width: 100%;
}

.energy-futures-section .lightning {
  width: 12rem;
  position: absolute;
  right: -6rem;
  bottom: -6rem;
}

.benefits-section {
  padding: 15rem 9.75rem 15rem 0;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 1fr;
  position: relative;
}

@media (max-width: 1240px) {
  .benefits-section {
    padding: 15rem 2.5rem 15rem 0;
  }
}

.benefits-section .workman {
  width: 100%;
}

.benefits .quick,
.benefits .easy,
.benefits .customizable {
  width: 12rem;
  padding: 2rem;
  backdrop-filter: blur(33px);
}

.benefits .quick {
  background-color: #ffffff80;
  margin-left: -17rem;
  border-radius: 1.5rem 0 0 1.5rem;
}

.benefits .easy {
  background-color: #0052b480;
  margin-left: -5rem;
  border-radius: 0 1.5rem 1.5rem 0;
}

.benefits .customizable {
  background-color: #021d54;
  margin-left: -17rem;
  border-radius: 1.5rem 0 0 1.5rem;
}

.benefits img {
  width: 6rem;
  height: 6rem;
}

.benefits p {
  font-family: "Rajdhani";
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
}

.benefits .quick p {
  color: var(--black);
}

.benefits .easy p,
.benefits .customizable p {
  color: var(--white);
}

.benefits-section .info .heading h3 {
  color: var(--green);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  padding: 0.5rem;
  border-bottom: 1px solid var(--green);
  font-family: "Rajdhani";
}

.benefits-section .info a {
  margin: 3rem 0 2rem;
}

@media (max-width: 1024px) {
  .benefits-section {
    grid-template-columns: 1fr;
  }

  .benefits {
    margin: 3rem 2.5rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .benefits .quick,
  .benefits .easy,
  .benefits .customizable {
    margin-left: 0 !important;
    border-radius: 1.5rem !important;
  }

  .benefits-section .info {
    margin: 0 2.5rem;
  }
}

.testimonial-section {
  position: relative;
  padding: 0 9.75rem;
}

@media (max-width: 1240px) {
  .testimonial-section {
    padding: 0 2.5rem;
  }
}

.testimonial-section .workman {
  width: 100%;
  border-radius: 1.5rem;
}

.testimonial-section .testimonial-container {
  width: 40%;
  position: relative;
  transform: translate(25%, -70%);
  background-color: #00133760;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(36px);
}

.testimonial-section .testimonial-container h2 {
  color: var(--white);
  font-family: "Rajdhani";
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.testimonial-section .testimonial-container p {
  color: #ffffff80;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.testimonial-section .testimonial-container .author-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.testimonial-section .testimonial-container .author-container img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.testimonial-section .testimonial-container .author-container p {
  color: #ffffff80;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.home-blog-section {
  padding: 15rem 9.75rem;
  position: relative;
}

@media (max-width: 1240px) {
  .testimonial-container h2 {
    display: none !important;
  }

  .testimonial-container {
    width: 60% !important;
  }

  .testimonial-container p,
  .author-container p {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    transform: translate(0, 0) !important;
    margin-top: 3rem;
    width: 100% !important;
  }
}

@media (max-width: 1240px) {
  .home-blog-section {
    padding: 15rem 2.5rem;
  }
}

.home-blog-section h3 {
  color: var(--green);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  padding: 0.5rem;
  border-bottom: 1px solid var(--green);
  font-family: "Rajdhani";
  margin-bottom: 0.5rem;
}

.home-blog-section h2 {
  color: var(--black);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 4.25rem;
  font-family: "Rajdhani";
  width: 50rem;
  max-width: 100%;
}

.home-blog-section .blogs-container {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.home-blog-section .blogs-container .blog {
  display: flex;
  flex-direction: column;
  border: 4px solid var(--white);
  border-radius: 1.5rem;
  background-color: #ffffff60;
  backdrop-filter: blur(20px);
  width: 100%;
  padding-bottom: 3rem;
}

.home-blog-section .blog img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  object-position: center;
}

.home-blog-section .blog h4 {
  margin: 3rem 2rem 0;
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  font-family: "Rajdhani";
  line-height: 2.625rem;
}

.home-blog-section .blog p {
  margin: 1.5rem 2rem 0;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.home-blog-section .blog a {
  position: absolute;
  bottom: 0;
}

.contact-section {
  padding: 0 9.75rem 15rem;
  display: flex;
}

@media (max-width: 1024px) {
  .home-blog-section .blogs-container {
    grid-template-columns: 1fr;
  }

  .home-blog-section .blog img {
    height: 25rem;
  }
}

@media (max-width: 1240px) {
  .contact-section {
    padding: 0 2.5rem 15rem;
  }
}

@media (max-width: 1024px) {
  .contact-section img {
    display: none;
  }

  .contact-form-container {
    margin-left: 0 !important;
    bottom: 0;
    width: 100% !important;
  }

  .contact-form-container form div {
    grid-template-columns: 1fr !important;
  }
}

.contact-section img {
  width: 60%;
}

.contact-form-container {
  width: 60%;
  padding: 3.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  border-radius: 1.5rem;
  border: 2px solid var(--white);
  background-color: #ffffff80;
  box-shadow: 25px 26px 100px 0 rgba(41, 95, 131, 0.08);
  backdrop-filter: blur(33px);
  position: relative;
  margin-left: -20rem;
  bottom: -5rem;
}

.contact-form-container h2 {
  color: var(--black);
  font-family: "Rajdhani";
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 4.25rem;
}

.contact-form-container form div {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-container form input {
  width: 100%;
  padding: 1.125rem 1.875rem;
  background-color: #ffffff80;
  color: var(--dark-grey);
  border-radius: 0.5rem;
  border: none;
}

.contact-form-container form textarea {
  margin-top: 1rem;
  height: 12.5rem;
  width: 100%;
  padding: 1.125rem 1.875rem;
  background-color: #ffffff80;
  color: var(--dark-grey);
  border-radius: 0.5rem;
  border: none;
}

.contact-form-container form input[type="submit"] {
  margin-top: 2rem;
  flex: 0;
  display: flex;
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  align-items: center;
  gap: 1.5rem;
  border-radius: 2.5rem;
  background-color: var(--blue);
  color: var(--white);
  font-family: "Rajdhani";
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  cursor: pointer;
  transition: all 0.5s;
}

.contact-form-container form input[type="submit"]:hover {
  background-color: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

footer {
  max-width: 100%;
  margin-top: 20rem;
  background-color: var(--white);
  padding: 3rem 9.75rem;
  display: grid;
  grid-template-areas: "logo nav" "socials socials" "copyright privacy";
  place-items: center;
}

@media (max-width: 1240px) {
  footer {
    padding: 3rem 2.5rem;
    grid-template-areas: "logo" "socials" "nav" "copyright" "privacy";
  }
}

footer .section-one {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer .footer-logo {
  grid-area: logo;
  width: 20rem;
}

footer .social-media {
  grid-area: socials;
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

footer .social-media .social-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--dark-grey);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.5s;
}

footer .social-media .social-circle:hover {
  background-color: var(--black);
}

footer nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1rem;
}

footer nav a {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  font-family: "Rajdhani";
}

footer .attribution,
footer .privacy-policy {
  margin-top: 3rem;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-grey);
}

footer .attribution {
  grid-area: copyright;
}

footer .privacy-policy {
  grid-area: privacy;
  text-decoration: none;
}

@media (max-width: 768px) {
  footer nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.green-cloud-top-left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
}

.green-cloud-top-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.blue-cloud-top-left {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
}

/* About page */

.home-hero.about-hero {
  height: 10rem;
  background-position: center;
}

.about-main-section,
.products-main-section,
.blog-main-section {
  margin-top: 10rem;
  padding: 0 9.75rem;
  display: grid;
  place-items: center;
  position: relative;
}

@media (max-width: 1240px) {
  .about-main-section,
  .products-main-section,
  .blog-main-section {
    padding: 0 2.5rem;
  }
}

.about-main-section h1,
.products-main-section h1,
.blog-main-section h1,
.read-blog h1 {
  font-size: 4rem;
  color: var(--black);
  font-family: "Rajdhani";
  font-weight: 500;
}

.about-main-section h2,
.products-main-section h2,
.blog-main-section h2 {
  font-size: 3.5rem;
  color: var(--black);
  font-family: "Rajdhani";
  font-weight: 300;
  width: 60%;
  text-align: center;
}

.about-main-section .about-us {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
  gap: 10rem;
}

.about-main-section .about-us img {
  width: 45%;
  border-radius: 1.5rem;
}

.about-main-section .about-us div {
  width: 45%;
}

.about-main-section .about-us div h3 {
  font-family: "Rajdhani";
  font-size: 2.5rem;
  color: var(--black);
}

.about-main-section .about-us div p {
  font-family: "Arial";
  font-size: 1.5rem;
  color: var(--dark-grey);
  font-weight: 300;
}

.about-main-section .our-team {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-main-section .our-team h3 {
  font-family: "Rajdhani";
  font-size: 2.5rem;
  color: var(--black);
  text-align: center;
}

.about-main-section .our-team p {
  font-family: "Arial";
  font-size: 1.5rem;
  color: var(--dark-grey);
  font-weight: 300;
  text-align: center;
  width: 70%;
}

.about-main-section .our-team .team-members .top-row,
.about-main-section .our-team .team-members .rest {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.about-main-section .our-team .team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-main-section .our-team .team-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.about-main-section .our-team .team-member h4 {
  color: var(--black);
  font-family: "Rajdhani";
  font-size: 2rem;
  text-align: center;
}

.about-main-section .our-team .team-member p {
  color: var(--dark-grey);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-align: justify;
}

@media (max-width: 1024px) {
  .about-main-section .about-us {
    flex-direction: column;
    gap: 3rem;
  }

  .about-main-section .about-us.our-values {
    flex-direction: column-reverse;
  }

  .about-main-section .about-us img,
  .about-main-section .about-us div {
    width: 100%;
  }

  .about-main-section .our-team .team-members .top-row,
  .about-main-section .our-team .team-members .rest {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about-main-section .our-team .team-members .top-row,
  .about-main-section .our-team .team-members .rest {
    grid-template-columns: 1fr;
  }
}

.products-main-section h1,
.products-main-section h2 {
  margin-left: -20rem;
}

.products-main-section a {
  position: absolute;
  right: 15%;
  top: 10%;
  background-color: var(--blue);
  color: var(--white);
  width: 15rem;
  height: 3.75rem;
  border-radius: 2rem;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-family: "Rajdhani";
  font-weight: 600;
  font-size: 1.5rem;
}

@media (max-width: 1280px) {
  .products-main-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .products-main-section h1,
  .products-main-section h2 {
    margin-left: 0;
    text-align: center;
  }

  .products-main-section a {
    position: relative;
    right: 0;
  }
}

.products-main-section .users {
  margin-top: 15rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.products-main-section .users h3 {
  font-size: 2rem;
  color: var(--black);
  font-family: "Rajdhani";
  text-align: center;
  margin-bottom: 3rem;
}

.products-main-section .users .text-container {
  background-color: #0052b480;
  z-index: 10;
  position: relative;
  margin-left: 20%;
  width: 70%;
  padding: 2rem;
  border-radius: 1.5rem;
  margin-bottom: 2rem;
}

.products-main-section .users p {
  font-size: 1.5rem;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.circle-image {
  float: left;
  clip-path: circle(40%);
  shape-outside: circle(45%);
}

.products-main-section ul {
  list-style: none;
}

.products-main-section ul li {
  color: var(--dark-grey);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5rem;
}

.products-main-section ul li span {
  font-weight: 600;
}

@media (max-width: 768px) {
  .products-main-section h1,
  .products-main-section h2,
  .blog-main-section h1,
  .blog-main-section h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .products-main-section .users .text-container {
    width: 100% !important;
    margin-left: 0;
  }

  .circle-image {
    display: none;
  }
}

.power-asset-valuation {
  margin-top: 15rem;
  padding: 0 9.75rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.power-asset-valuation img {
  width: 100%;
}

@media (max-width: 1280px) {
  .power-asset-valuation {
    padding: 0 2.5rem;
    grid-template-columns: 3fr 1fr !important;
  }
}

@media (max-width: 1024px) {
  .power-asset-valuation {
    display: flex !important;
    flex-direction: column-reverse;
  }

  .power-asset-valuation img {
    width: 80%;
    align-self: center;
  }
}

.power-asset-valuation h3,
.what-we-offer h3,
.our-services h3 {
  font-size: 2rem;
  color: var(--black);
  font-family: "Rajdhani";
  text-align: center;
  margin-bottom: 3rem;
}

.power-asset-valuation ul,
.our-services ul {
  list-style-position: inside;
}

.power-asset-valuation p,
.power-asset-valuation li,
.our-services p,
.our-services li,
.read-blog p {
  margin-top: 0.75rem;
  color: var(--dark-grey);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.5rem;
}

.power-asset-valuation li,
.our-services li {
  margin-left: 1rem;
}

.power-asset-valuation a,
.our-services a {
  color: var(--dark-grey);
  font-weight: 700;
  text-decoration: none;
}

.what-we-offer {
  padding: 15rem 9.75rem;
}

@media (max-width: 1280px) {
  .what-we-offer {
    padding: 15rem 2.5rem;
  }
}

.what-we-offer p {
  color: var(--dark-grey);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.what-we-offer .offers-container {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .what-we-offer .offers-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .what-we-offer .offers-container {
    grid-template-columns: 1fr;
  }
}

.what-we-offer .offers-container .offer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 1.5rem;
}

.what-we-offer .offers-container .offer i {
  color: var(--green);
  font-size: 3rem;
}

.what-we-offer .offers-container .offer h4 {
  font-size: 2rem;
  color: var(--black);
  text-align: center;
  font-family: "Rajdhani";
}

.what-we-offer .offers-container .offer p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.our-services {
  padding: 0 9.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 1280px) {
  .our-services {
    padding: 0 2.5rem;
  }
}

.pink-cloud {
  position: absolute;
  width: 90%;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.blog-main-section {
  position: relative;
}

/* Single blog page styles */

.read-blog {
  padding: 9.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1280px) {
  .read-blog {
    padding: 9.75rem 2.5rem;
  }
}

.read-blog h1 {
  text-align: center;
}

.read-blog img {
  width: 50%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .read-blog img {
    width: 80%;
  }
}

.home-hero-main-section,
.home-hero-main-section .info,
.home-hero-main-section .heading {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 1rem;
}
