.mainSolar {
  width: 100%;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Suisseintl Webxl, sans-serif;
}

.heroSection {
  width: 100%;
  height: calc(90vh - 9em);
  
  padding: 0rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 9em;
}

.subhead {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
}
.headingSolar {
  line-height: 1;
  font-size: 3.2rem;
  text-transform: capitalize;
  font-weight: 600;
  /* letter-spacing: -0.04vw; */
  font-style: italic;
  position: absolute;
  top: 9vh;
  left: 1.5em;
}
.desc {
  font-size: 1.2rem;
  font-weight: 400;
  padding-left: 0.5rem;
  opacity: 0.8;
}

.exploreBtn {
  position: absolute;
  bottom: 4rem;
}

.exploreBtn a {
  color: #fff;
  fill: #fff;
}

.mainProductsSolar {
  width: 100%;
  padding: 2rem 4rem;
}

.mainProductsSolar .ourProducts {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 1rem;
}
.secTitle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.headingSec {
  font-size: 2rem;
  color: #17509d;
}

.ourProducts .productItem {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 10px;
  transition: 0.3s all ease;
  padding-bottom: 3rem;
}

.ourProducts .productItem img {
  /* height: 15rem; */
  width: 100%;
  object-fit: cover;
}
.ourProducts .productItem svg {
  opacity: 0;
  position: absolute;
  bottom: 1rem;
  width: 25px;
  height: 25px;
  transition: 0.3s all ease;
}
.ourProducts .productItem:hover svg {
  opacity: 1;
}
.ourProducts .productItem:hover {
  background-color: rgba(230, 236, 244, 1);
}

#whySolar .ourProducts {
  grid-template-columns: 1fr 1fr;
}

.ourProducts .whyItem {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  background-color: #17509d;
  color: #fff;
  border-radius: 10px;
  width: 100%;
  gap: 1rem;
  text-align: left;
  transition: 0.3s all ease;
}
#whySolar {
  margin-bottom: 4rem;
}

.whyItem img {
  width: 100px;
  height: 100px;
}
.whyItem h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.ytEmbed {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 4rem;
  gap: 1rem;
  margin-bottom: 5rem;
}

.ytItem {
  width: 100%;
  height: 320px;
  /* max-height: 320px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ytItem iframe {
  width: 100%;
  height: 100%;
  /* min-height: 5rem; */
  border-radius: 10px;
}

.secStrip {
  width: 100%;
  background-color: #17509d;
  min-height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}
.secStrip .headingSec {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

.exploreBtn a {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.exploreBtn .downAnim {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 5px;
}
.exploreBtn .downAnim svg {
  margin-top: -10px;
  opacity: 0;
}

.exploreBtn .downAnim svg:nth-child(0) {
  animation: downAnim 1s ease 0s infinite;
}
.exploreBtn .downAnim svg:nth-child(1) {
  animation: downAnim 1s ease 0.3s infinite;
}
.exploreBtn .downAnim svg:nth-child(2) {
  animation: downAnim 1s ease 0.6s infinite;
}

@keyframes downAnim {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.productOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}
.showProductSolar {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90vh;
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeIn {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.showProductSolarInner {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem 2rem;
  gap: 2rem;
  position: relative;
  z-index: 9999;
}
.showProductSolarInner .closeIcon {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
}

.showProductSolarInner .solarLeft {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.showProductSolarInner .solarRight {
  width: 100%;
  height: 94%;
  overflow-y: auto;
  overflow-x: hidden;
  color: #000;
  padding: 2rem 2rem;
  margin-top: 5%;
}
.solarRight::-webkit-scrollbar {
  width: 4px;
}
.solarRight::-webkit-scrollbar-track {
  width: 4px;
  background-color: #eee;
}
.solarRight::-webkit-scrollbar-thumb {
  width: 4px;
  background-color: #000;
  border-radius: 150px;
}

.showProductSolarInner .solarRight h1 {
  color: #000;
  text-transform: capitalize;
  font-size: 2rem;
}
.showProductSolarInner .features {
  margin-top: 2rem;
}
.showProductSolarInner .mainProductsSolar {
  padding: 0;
}
.showProductSolarInner .advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.showProductSolarInner .advantages .whyItem {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background-color: rgba(230, 236, 244, 1);
  border-radius: 10px;
  width: 100%;
  gap: 1rem;
  text-align: left;
  transition: 0.3s all ease;
}
.showProductSolarInner .advantages .whyItem h2 {
  margin: 0;
}

.showProductSolar .headingSec {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.mainSolar .clientSwiper {
  width: 100%;
  overflow: hidden;
  padding: 2rem 4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mainSolar .clientSwiper .clientSwiperWrapper {
  max-height: 100%;
}

#projectList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4rem;
  gap: 2rem;
  margin-bottom: 4rem;
}

#projectList h4 {
  font-size: 1rem;
  text-align: center;
}
#projectList img {
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
  height: 240px;
  width: 100%;
  object-fit: cover;
}
#projectList img:hover {
  transform: scale(1.01);
}
.achievements {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 4rem;
  gap: 2rem;
  margin-bottom: 4rem;
}

.achievements h4 {
  font-size: 1rem;
  text-align: center;
  background: #17509d;
  padding: 0.5rem 1rem;
  max-width: 60%;
  margin: 10px auto;
  color: #fff;
  font-weight: 500;
  border-radius: 20px;
}
.achievements img {
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
  /* height: 320px; */
  width: 100%;
  object-fit: cover;
}
.achievements img:hover {
  transform: scale(1.01);
}

.servicesGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 4rem;
  gap: 0.1rem;
  margin-bottom: 4rem;
}

.servicesGrid .serviceGridItem {
  height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/media/ganit_img (3).jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem;
  flex-direction: column;
  color: #fff;
  transition: all 0.3s ease;
}

@keyframes zoomBg {
  from {
    background-size: 100%;
  }
  to {
    background-size: 103%;
  }
}
@keyframes zoomOutBg {
  from {
    background-size: 103%;
  }
  to {
    background-size: 100%;
  }
}

.servicesGrid .serviceGridItem h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.servicesGrid .serviceGridItem p {
  max-width: 80%;
  text-align: center;
  opacity: 0.8;
}

@media screen and (max-width: 997px) {
  .mainProductsSolar .ourProducts {
    grid-template-columns: 1fr 1fr;
  }
  .ourProducts .productItem {
    background-color: rgba(230, 236, 244, 1);
  }
  .ourProducts .productItem svg {
    opacity: 1;
    width: 17px;
    height: 17px;
  }
  .ytEmbed {
    grid-template-columns: 1fr;
  }
  .showProductSolarInner .advantages {
    grid-template-columns: 1fr;
  }
  .showProductSolarInner {
    grid-template-columns: 1fr;
    overflow-y: scroll;
    padding: 1rem;
  }
  .showProductSolar {
    height: 80%;
  }
  .showProductSolarInner .solarRight {
    width: 100%;
    color: #000;
    padding: 1rem;
    overflow-y: visible;
    overflow-x: visible;
    height: auto;
  }

  #whySolar .ourProducts {
    grid-template-columns: 1fr;
  }
  .ourProducts .whyItem {
    flex-direction: column;
    padding-top: 2rem;
  }
  .headingSec {
    text-align: center;
    padding: 0 2rem;
  }
  #projectList {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
  }
  .achievements {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
  }
  .servicesGrid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .servicesGrid .serviceGridItem:hover {
    background-size: cover;
    animation: none;
  }
  .servicesGrid .serviceGridItem:not(:hover) {
    animation: none;
  }
  .servicesGrid .serviceGridItem {
    padding: 0.5rem;
  }

  .heroSection {
    height: calc(90vh - 8vh);
    margin-top: 5vh;
    font-size: 3.2rem;
  }

  .headingSolar {
    left: 0.8rem;
  }
}

@media screen and (max-width: 667px) {
  #projectList img {
    height: 320px;
    object-fit: cover;
  }
}
@media screen and (max-width: 667px) {
  .mainProductsSolar .ourProducts {
    grid-template-columns: 1fr;
  }
  .headingSolar {
    font-size: 2rem;
  }
  .heroSection {
    padding: 0 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url(/media/Solar/Solar\ Phone\ view\ Home\ Banner\ \(1\).png);
  }
  .mainProductsSolar {
    padding: 1rem 2rem;
  }
  .ytEmbed {
    padding: 1rem 2rem;
  }
  .mainSolar .clientSwiper {
    padding: 1rem 1rem;
  }
  .clientSwiper {
    margin: 0;
  }

  .achievements {
    grid-template-columns: 1fr;
  }
  .achievements .project-card {
    display: flex;
    flex-direction: column;
  }
  .achievements .project-card img {
    max-height: 320px;
    max-width: 320px;
    margin: 0 auto;
  }
  .whyItem h2 {
    font-size: 1rem;
    text-align: center;
    line-height: 1.2;
  }

  .servicesGrid .serviceGridItem h2 {
    font-size: 1.3rem;
  }
  .servicesGrid .serviceGridItem p {
    font-size: 0.8rem;
  }

  #projectList {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #weProvideList img {
    margin-right: 0 !important;
    width: 120px !important;
    height: 120px !important;
  }
}

@font-face {
  font-family: "Suisseintl Webxl";
  src: url("../fonts/659d73ecf33b6015682ca4ee_SuisseIntl-Medium-WebXL.woff2")
      format("woff2"),
    url("../fonts/659d73ecb029bae889a427f6_SuisseIntl-Medium-WebXL.woff")
      format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisseintl Webxl";
  src: url("../fonts/659d73ecf79b9ed3176c7420_SuisseIntl-Regular-WebXL.woff2")
      format("woff2"),
    url("../fonts/659d73ec1d9b1de9949f83d1_SuisseIntl-Regular-WebXL.woff")
      format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisseintl Webxl";
  src: url("../fonts/659d73ed4ae6a74e58f3f767_SuisseIntl-Light-WebXL.woff2")
      format("woff2"),
    url("../fonts/659d73ed391cd8a15788b1ff_SuisseIntl-Light-WebXL.woff")
      format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisseworks Webxl";
  src: url("../fonts/659d73eda02a6d005cb0c0ad_SuisseWorks-Regular-WebXL.woff2")
      format("woff2"),
    url("../fonts/659d73ecf139bbee0dc43894_SuisseWorks-Regular-WebXL.woff")
      format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "pesch-logo-font";
  src: url("../fonts/659d7d5757d1469ef1e822b7_PPNeueMontrealPeschCustomVF.woff2")
    format("woff2");
  font-weight: 30 120;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisseworks Webxl";
  src: url("../fonts/6677eab6adbd75a26cb9f5a8_SuisseWorks-RegularItalic.otf")
    format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
