body,
h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
  margin: 0;
  padding: 0;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
li {
  list-style-type: none;
}
a {
  display: inline-block;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(102.69deg, #00a7e1 0, #00a551 100.55%);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(102.69deg, #00a7e1 0, #00a551 100.55%);
}
::-webkit-scrollbar {
  width: 4px;
  border-radius: 20px;
}
::-webkit-scrollbar-corner {
  background: #f1f1f1;
}
.container {
  max-width: 1438px;
  margin: 0 auto;
  padding: 0 6rem;
}
@media screen and (max-width: 991.5px) {
  .container {
    padding: 0 1.6rem;
    max-width: 100%;
  }
}
.disclaimer_text {
  font-size: clamp(1rem, 1vw, 1.2rem) !important;
  line-height: 1.9rem !important;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #00000066;
  width: 100%;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: translateX(1px);
  }
  40% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(-5px);
  }
}
header {
  padding: 1rem 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
}
header nav ul {
  gap: 4rem;
}
header nav ul .list_item,
header nav ul a {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  font-weight: 400;
  line-height: 19.31px;
  /* text-align: center; */
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 991.5px) {
  header nav ul a {
    text-decoration: underline !important;
  }
}

/* header nav ul a:hover, */
/* header nav .dropdown_toggle:hover { */
/* transition: 0.3s; */
/* color: #00a650 !important; */
/* } */
.dropdown_item_link {
  color: #000;
  padding: 8px 10px;
  width: 100%;
  border-radius: 12px;

  &:hover {
    position: relative;
    color: #00a650;
    background: linear-gradient(
      90deg,
      rgba(0, 166, 80, 0.08) 80.56%,
      rgba(0, 173, 235, 0.08) 100%
    );
  }
  @media screen and (max-width: 991.5px) {
    .dropdown_item_link {
      padding: 8px 0;
    }
  }
  /* header nav ul .list_item:hover { */
  /* color: #00a650; */
  /* } */

  /* &:hover::after { */
  /* content: ""; */
  /* position: absolute; */
  /* right: 20px; */
  /* width: 0; */
  /* height: 0; */
  /* top: 35%; */
  /* border-left: solid 5px #212121; */
  /* border-bottom: solid 5px transparent; */
  /* border-top: solid 5px transparent; */
  /* } */
  /* @media screen and (max-width: 991.5px) { */
  /* &:hover::after { */
  /* position: unset; */
  /* border-left: unset; */
  /* } */
  /* } */
}
@media screen and (max-width: 991.5px) {
  header nav ul a {
    text-decoration: underline !important;
  }
}

.dropdown {
  display: none;
  list-style: none;
  position: absolute;
  z-index: 5;
  background-color: #fff;
  padding: 16px;
  margin: 0;
  top: 30px;
  width: 215px;
  left: -80px;
  /* background: linear-gradient(180deg, #02a9e0 0%, #02a757 130.23%); */
  box-shadow: 0px 8px 8px -4px #10182808;

  /* border: 1px solid #dadada; */
  border-radius: 12px;
}
@media screen and (max-width: 991.5px) {
  .dropdown {
    position: unset;
    width: 100%;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    border-radius: unset;
    box-shadow: unset;
    border-left: unset;
    border-right: unset;
    margin-top: 20px;
  }
}
.dropdown_item {
  width: 100%;
  display: block;
  text-align: start;
  margin-bottom: 1rem;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 700;
  line-height: 2rem;
  transition: 0.3s;
}
@media screen and (max-width: 991.5px) {
  .dropdown_item {
    text-align: center;
  }
}
.dropdown_toggle {
  position: relative;
}
.dropdown_toggle:after {
  position: absolute;
  content: "";
  right: -15px;
  top: 8px;
  border-top: solid 5px #fff;
  border-left: solid 3px transparent;
  border-right: solid 3px transparent;
}
.dropdown_toggle.scrolled:after {
  border-top: solid 5px #000; /* Change color on scroll */
}
header nav ul .enquire_btn {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  padding: 1.3rem 2.7rem;
  border-radius: 7px;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  header nav ul .enquire_btn {
    padding: 1.1rem 2.7rem;
  }
}
header nav ul .enquire_btn a:hover {
  color: #fff !important;
}
header nav ul .sm_list_item {
  transition: 0.3s;
  font-size: clamp(1.4rem, 1vw, 1.4rem);
}
header nav ul .sm_list_item a:hover {
  color: #00a650;
  transition: 0.3s;
}
header nav .sm_list {
  transition: 1s;
}
header nav .nav_list_mob {
  padding: 100px 0 80px 20px;
  z-index: 99;
  position: fixed;
  top: 0;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  /* background-color: #fff; */
  width: 100%;
  transform: translateX(500px);
  box-shadow: 2px 4px 20px #000;
}
header nav .nav_list_mob.visible {
  transform: translateX(90px);
  opacity: 1;
}
header nav .nav_list_mob li {
  padding-bottom: 10px;
}

@media screen and (max-width: 991.5px) {
  header nav .nav_list_mob li a,
  .dropdown_toggle {
    /* color: #00a650; */
    color: #fff;
    text-decoration: none !important;
    font-size: 20px !important;
  }
}
header nav #hamburger {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 10px;
  right: 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 4px transparent;
  transition: all 0.2s ease;
  z-index: 9999;
}
header nav #hamburger:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
  transition: all 0.2s ease;
}
header nav #hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 28px;
  left: 50%;
  background: #000;
  transform: translateX(-50%);
  border-radius: 10px;
  transition: all 0.15s ease;
}
header nav #hamburger span:first-child {
  top: 12px;
}
header nav #hamburger span:nth-child(2) {
  top: 20px;
}
header nav #hamburger span:last-child {
  top: 28px;
}
header nav #hamburger.close {
  top: 10px;
  right: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
header nav #hamburger.close span:first-child {
  top: 10px;
  transform: translate(-14px, 10px) rotate(135deg);
}
header nav #hamburger.close span:nth-child(2) {
  left: -20px;
  opacity: 0;
}
header nav #hamburger.close span:last-child {
  top: 10px;
  transform: translate(-14px, 10px) rotate(-135deg);
}
header nav .enquire_btn_mob {
  position: relative;
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  padding: 1rem 1.7rem;
  border-radius: 7px;
  border: 1px solid #00adeb;
  position: absolute;
  right: 20%;
  top: 20%;
  background-color: #fff;
  background: -webkit-linear-gradient(90deg, #00a650 0, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header nav .ece_logo {
  width: 120px;
}
header nav .ece_logo a {
  display: block;
}
@media screen and (max-width: 991.5px) {
  header nav .ece_logo {
    width: 30%;
    /* z-index: 100; */
  }
}
header .nav_list_mob .accordion .accordion-button {
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 19.31px;
  /* text-align: center; */
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  /* text-align: center; */
  display: block;
  position: relative;
}
header .nav_list_mob .accordion .accordion-header a {
  /* color: #00a650; */
  color: #fff;
}
header .nav_list_mob .accordion .head_aftr {
  position: relative;
}
header .nav_list_mob .accordion .head_aftr::after {
  position: absolute;
  content: "";
  right: 37%;
  top: 15px;
  border-top: solid 5px #000;
  border-left: solid 3px transparent;
  border-right: solid 3px transparent;
  z-index: 10;
}
@media screen and (max-width: 991.5px) {
  header .nav_list_mob .accordion .head_aftr::after {
    display: none;
  }
}

header .nav_list_mob .accordion .accordion-item {
  /* margin-bottom: 3rem; */
  border: none;
}
/* header .nav_list_mob .accordion .accordion-item::after { */
/* position: absolute; */
/* content: ""; */
/* width: 65%; */
/* height: 1px; */
/* background-color: #ffc107 !important; */
/* bottom: 0; */
/* } */
header .nav_list_mob .accordion .accordion-body {
  /* text-align: center; */
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  padding: 1rem 0 !important;
}
header .nav_list_mob .accordion .accordion-button {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%) !important;
  padding: 2rem 0;
}

header .nav_list_mob .accordion .arrow_mob::after {
  position: absolute;
  width: 40px;
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important; */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  background-size: 18px 18px; /* Increase the size of the image */
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(270deg);
  left: 60%;
  top: 40%;
}
.arrow_mob:not(.collapsed)::after {
  bottom: 10px;
  width: 50px;
  left: 60%;

  transform: rotate(360deg) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  background-size: 18px 18px; /* Increase the size of the image */
  background-repeat: no-repeat;
  background-position: center;
}
header .nav_list_mob .accordion .accordion-button:not(.collapsed) {
  background-color: unset;
  box-shadow: unset;
}
header .nav_list_mob .accordion .accordion-button:focus {
  border: 0;
  box-shadow: unset;
}
/* header .nav_list_mob .accordion .accordion-button:not(.collapsed)::after { */
/* background-image: var(--bs-accordion-btn-icon); */
/* } */
header .nav_list_mob .accordion-button:not(.collapsed) {
  color: #ffc107;
  background-color: #e7f1ff;
  box-shadow: unset !important;
}
.green_way_wrapper {
  position: relative;
}
.green_way_wrapper .video_wrap {
  position: relative;
  transition: transform 2s ease-out;
}
.green_way_wrapper #muteBtn {
  position: absolute;
  top: 90vh;
  left: 17%;
  z-index: 33;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1vw, 1.8rem);
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  padding: 7px 20px;
  outline: 0;
  border: 1px solid #fff;
  transition: 1s;
  color: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 1600px) {
  .green_way_wrapper #muteBtn {
    left: 10%;
  }
}
@media screen and (max-width: 1440px) {
  .green_way_wrapper #muteBtn {
    left: 5%;
  }
}
.green_way_wrapper #pauseBtn,
.green_way_wrapper #replayBtn {
  cursor: pointer;
  position: absolute;
  bottom: 2%;
  right: 15%;
  width: 15%;
  border-radius: 8px;
}
@media screen and (max-width: 1600px) {
  .green_way_wrapper #pauseBtn,
  .green_way_wrapper #replayBtn {
    right: 10%;
  }
}
@media screen and (max-width: 1440px) {
  .green_way_wrapper #pauseBtn,
  .green_way_wrapper #replayBtn {
    right: 5%;
  }
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper #pauseBtn,
  .green_way_wrapper #replayBtn {
    width: 25%;
  }
}
.green_way_wrapper .video_wrap.hidden {
  transform: translateY(-100%);
  transition: transform 2s ease-out;
}
.green_way_wrapper .video_wrap {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 33;
}
.green_way_wrapper .banner_img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  /* width: auto; */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* &@@@@@@@@@@@@@@@ new css content 1 @@@@@@@@@@@ */

.green_way_wrapper .green_way_content {
  position: absolute;
  top: 18%;
  transform: translateY(-50%);
  /* right: 20px; */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content {
    /* top: 32%; */
    top: 15%;
  }
}

.green_way_wrapper .green_way_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 3vw, 6.5rem);
  font-weight: 700;
  line-height: normal;
  color: #fff;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(90deg, #00adeb 0, #00a650 100%);
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content h1 {
    margin-bottom: unset;
  }
}

.green_way_wrapper .green_way_content span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.8vw, 5rem);
  font-weight: 500;
  line-height: 3.5rem;
  color: #fff;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  width: fit-content;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content span {
    margin-bottom: unset;
  }
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content h1 br {
    display: none;
  }
}
.green_way_wrapper .green_way_content h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.2rem, 1.3vw, 2.4rem);
  font-weight: 600;
  text-align: start;
  color: #fff;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-align: center;
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content h2 {
    margin: 1rem 0;
  }
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content h2 br {
    display: none;
  }
}
.green_way_wrapper .know_more {
  color: #fff;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 0.8rem 5rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 2rem;
  display: block;
  margin: 0 auto;
  width: fit-content;
  margin-top: 2rem;
}
.green_way_wrapper .green_way_content .join_revolution {
  color: #01a753;
  border: 1.3px solid #01a753;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  background-color: #fff;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 1.5rem 5rem;
  border-radius: 8px;
  text-decoration: none;
}
/* .green_way_wrapper .green_way_content .greenway { */
/* display: block; */
/* font-size: clamp(6rem, 1.5vw, 7.7rem); */
/* line-height: clamp(8rem, 2vw, 9.9rem); */
/* font-weight: 700; */
/* } */
/* .green_way_wrapper .green_way_content .better_way { */
/* margin-left: 7rem; */
/* } */
/* &@@@@@@@@@@@@@@@ new css @@@@@@@@@@@ */

.green_way_wrapper .green_way_content2 {
  position: absolute;
  top: 75%;
  transform: translateY(-50%);
  left: 8%;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content2 {
    top: 40%;
    left: 0;
  }
}
.green_way_wrapper .green_way_content2 h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(4.5rem, 3.6vw, 6.5rem);
  font-weight: 700;
  line-height: normal;
  text-align: left;
  color: #fff;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 0 8px;
  /* margin-bottom: 1.5rem; */
  width: fit-content;
  background: linear-gradient(90deg, #00adeb 0, #00a650 100%);
}
.green_way_wrapper .green_way_content2 h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 2vw, 3.5rem);
  font-weight: 600;

  text-align: left;
  color: #fff;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content2 h2 br {
    display: none;
  }
}

.green_way_wrapper .green_way_content2 h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  font-weight: 400;
  line-height: 2.8rem;
  text-align: left;
  color: #fff;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 2rem 0 2rem;
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content2 h3 br {
    display: none;
  }
}
.green_way_wrapper .green_way_content2 .features {
  width: 60%;
}
.green_way_wrapper .green_way_content2 .features img {
  width: 14%;
}
@media screen and (max-width: 767.5px) {
  .green_way_wrapper .green_way_content2 .features img {
    width: 8%;
  }
}
.green_way_wrapper .green_way_content2 .features h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 600;

  text-align: left;
  color: #fff;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 0;
}
.green_way_wrapper .green_way_content2 .know_more {
  color: #fff;
  background: linear-gradient(90deg, #00adeb 0, #00a650 100%);
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 0.8rem 5rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 2rem;
}
/* &@@@@@@@@@@@@@@@ new css @@@@@@@@@@@ */
@media screen and (max-width: 991.5px) {
  .solar_manufacturing_wrapper {
    background: linear-gradient(164.97deg, #0ebcff 1.03%, #0078a6 243.88%);
  }
}
.solar_manufacturing_wrapper .solar_manufacturing_content {
  overflow: hidden;
  padding: 0 8.3rem;
  border-radius: 24px;
  background: linear-gradient(165.99deg, #0ebcff 1.04%, #0078a6 142.44%);
}
@media screen and (max-width: 991.5px) {
  .solar_manufacturing_wrapper .solar_manufacturing_content {
    padding: 2rem 0;
    border-radius: unset;
    background: unset;
  }
}
.solar_manufacturing_wrapper .solar_manufacturing_content h2 {
  font-size: clamp(2.4rem, 2vw, 2.9rem);
  font-weight: 700;
  line-height: normal;
  color: #fff;
}
@media screen and (max-width: 991.5px) {
  .solar_manufacturing_wrapper .solar_manufacturing_content h2 {
    padding-bottom: 2.4rem;
  }
}
.solar_manufacturing_wrapper .solar_manufacturing_content .hashone {
  font-size: clamp(4.6rem, 2.5vw, 5.6rem);
  font-weight: 800;
  line-height: normal;
}
.solar_manufacturing_wrapper .solar_manufacturing_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1vw, 2rem);
  font-weight: 400;
  line-height: clamp(2.5rem, 2.2vw, 3.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  padding-bottom: 2rem;
}
@media screen and (max-width: 991.5px) {
  .solar_manufacturing_wrapper .solar_manufacturing_content p {
    padding-bottom: 1rem;
  }
}
.solar_manufacturing_wrapper .solar_manufacturing_content .our_purpose {
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #fff;
  padding: 1.6rem 4.5rem;
  text-decoration: none;
  border: 1.3px solid #fdfdfd;
  border-radius: 8px;
}
@media screen and (max-width: 991.5px) {
  .solar_manufacturing_wrapper .solar_manufacturing_content .our_purpose {
    padding: 1.3rem 2.5rem;
  }
}
.solar_manufacturing_wrapper .solar_manufacturing_content .our_vision {
  font-size: 1.4rem;
  padding: 1.6rem 4.5rem;
  text-decoration: none;
  margin-left: 15px;
  background: #fff;
  line-height: 1.6rem;
  color: #0898d0;
  border-radius: 8px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 991.5px) {
  .solar_manufacturing_wrapper .solar_manufacturing_content .our_vision {
    padding: 1.3rem 2.5rem;
  }
}
.solar_manufacturing_wrapper
  .solar_manufacturing_content
  .solar_manufacturing_card {
  padding: 18px;
  border: 1.65px solid #ececec;
  border-radius: 9px;
  background: #fff;
}
@media screen and (max-width: 991.5px) {
  .solar_manufacturing_wrapper
    .solar_manufacturing_content
    .solar_manufacturing_card {
    padding: 12px;
    margin: 0 4px;
    height: 180px;
  }
}
.solar_manufacturing_wrapper
  .solar_manufacturing_content
  .solar_manufacturing_card
  h3 {
  font-family: Manrope, sans-serif;
  font-size: clamp(2rem, 1vw, 2.7rem);
  font-weight: 600;
  line-height: 3.3rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 35px 0 9px;
  color: #232323;
}
@media screen and (max-width: 991.5px) {
  .solar_manufacturing_wrapper
    .solar_manufacturing_content
    .solar_manufacturing_card
    h3 {
    margin: 15px 0 9px;
  }
}
.solar_manufacturing_wrapper
  .solar_manufacturing_content
  .solar_manufacturing_card
  h6 {
  font-family: Manrope, sans-serif;
  font-size: clamp(1.1rem, 1vw, 1.3rem);
  font-weight: 500;
  line-height: 1.9 rem;
  color: #464646;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.solar_manufacturing_wrapper .solar_manufacturing_content .circle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
}
@media screen and (max-width: 767.5px) {
  .solar_manufacturing_wrapper .solar_manufacturing_content .circle {
    display: none;
  }
}
.solar_manufacturing_wrapper .solar_manufacturing_content .rectangle {
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767.5px) {
  .solar_manufacturing_wrapper .solar_manufacturing_content .rectangle {
    right: 0;
    left: unset;
  }
}
.solar_manufacturing_wrapper
  .solar_manufacturing_content
  .solar_manufacturing_card
  img {
  width: 50%;
}
.solar_manufacturing_wrapper .section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60vh;
  padding: 0 2rem;
  overflow: hidden;
}
.solar_manufacturing_wrapper .content {
  flex: 1;
  text-align: center;
  padding: 2rem;
}
.solar_manufacturing_wrapper .sliders {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  position: relative;
  justify-content: flex-end;
  z-index: 3;
}
.solar_manufacturing_wrapper .gallery-container {
  position: relative;
  width: 190px;
  height: 80vh;
  overflow: hidden;
}
@media screen and (max-width: 1360.5px) {
  .solar_manufacturing_wrapper .gallery-container {
    height: 120vh;
  }
}
@media screen and (max-width: 1199.5px) {
  .solar_manufacturing_wrapper .gallery-container {
    height: 100vh;
  }
}
@media screen and (max-width: 991.5px) {
  .solar_manufacturing_wrapper .gallery-container {
    height: auto;
  }
}
.solar_manufacturing_wrapper .gallery-track {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0;
}
.solar_manufacturing_wrapper .abc {
  position: absolute;
  top: -100%;
}
#solar_manufacturing_wrapper {
  background: unset;
}
#solar_manufacturing_wrapper .solar_manufacturing_content {
  background: unset;
}
#solar_manufacturing_wrapper .solar_manufacturing_mob_slider .slick-list {
  padding: 10px 9% 10px 0 !important;
}
.powering_future_wrapper {
  position: relative;
  margin-top: 8.8rem;
}
@media screen and (max-width: 1440px) {
  .powering_future_wrapper {
    margin-top: 5.8rem;
  }
}
@media screen and (max-width: 767.5px) {
  .powering_future_wrapper {
    margin-top: 1.8rem;
  }
}
.powering_future_wrapper .powering_future_content {
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.07);
  margin-right: 20px;
}
@media screen and (max-width: 991.5px) {
  .powering_future_wrapper .powering_future_content {
    margin-right: unset;
    box-shadow: unset;
  }
}
.powering_future_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  font-weight: 600;
  line-height: clamp(3.8rem, 2.2vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 991.5px) {
  .powering_future_wrapper h2 {
    padding-top: unset;
  }
}
.powering_future_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1vw, 2rem);
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #343434;
  padding: 1.6rem 0 3.2rem;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 991.5px) {
  .powering_future_wrapper p {
    padding: 1.2rem 0 2.2rem;
  }
}
.powering_future_wrapper .know_more {
  color: #01a753;
  border: 1.3px solid #01a753;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 1.6rem 5rem;
  border-radius: 8px;
  text-decoration: none;
}
.powering_future_wrapper .toggle-arrows .prev {
  position: absolute;
  top: 50%;
  left: 10px;
  background: rgba(1, 167, 93, 0.1);
  border: none;
  outline: 0;
  border-radius: 50px;
  padding: 10px 14px;
}
.powering_future_wrapper .toggle-arrows .next {
  background: rgba(1, 167, 93, 0.1);
  border: none;
  outline: 0;
  border-radius: 50px;
  padding: 5px 5px;
  position: absolute;
  top: 50%;
  right: 10px;
}
.powering_future_wrapper .slick-dots li {
  border-radius: 50px;
  border: 1px solid #cfcfcf;
  width: 15px;
  height: 15px;
}
.powering_future_wrapper .slick-dots .slick-active {
  background: #01a75d;
}
.our_product {
  background: #001d30;
  margin-top: 8.8rem;
  padding-top: 100px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .our_product {
    margin-top: 5.8rem;
    padding-top: 70px;
  }
}
@media screen and (max-width: 767.5px) {
  .our_product {
    padding-bottom: unset;
    padding-top: 50px;
    margin-top: 0;
  }
}
.our_product .topcon_text {
  font-family: Cairo, sans-serif;
  font-size: clamp(5rem, 3.2vw, 7.2rem);
  color: #fff;
  font-weight: 800;
  line-height: 87.3px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  position: relative;
  z-index: 50;
}
.our_product h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.2vw, 4rem);
  color: #fff;
  font-weight: 600;
  line-height: 64px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 767.5px) {
  .our_product .ovrflw {
    overflow: hidden;
  }
}
.our_product .product_card {
  background: #07314a;
  padding: 3.2rem 2.2rem 2.2rem;
  border-radius: 16px;
  width: fit-content;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 767.5px) {
  .our_product .product_card {
    padding: 3.2rem 1.2rem 2.2rem;
  }
}
.our_product .product_card .topconbtns button {
  font-family: "Exo 2", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 16.89px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: transparent;
  outline: 0;
  color: #fff;
  border: 1px solid #fff;
}
@media screen and (max-width: 767.5px) {
  .our_product .product_card .topconbtns button {
    padding: 10px 10px;
  }
}
.our_product .product_card .topconbtns .active {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
}
.our_product .product_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  font-weight: 500;
  line-height: 19.31px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
.our_product .product_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 1vw, 2.4rem);
  font-weight: 400;
  line-height: 28.96px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
.our_product .product_card .know_more_btn {
  color: #00d2fc;
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.89px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-decoration: none;
  padding: 17px 120px;
  text-align: center;
  border: 2px solid #00adeb;
  border-radius: 8px;
  width: fit-content;
  margin: 7.4rem auto 0;
  display: block;
}
@media screen and (max-width: 14405px) {
  .our_product .product_card .know_more_btn {
    margin: 5.4rem auto 0;
  }
}
@media screen and (max-width: 991.5px) {
  .our_product .product_card .know_more_btn {
    padding: 17px 90px;
  }
}
.our_product .mob_clr {
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 767.5px) {
  .our_product .mob_clr {
    background: #07314a;
  }
}
.our_product .image-container img {
  position: absolute;
  right: 0;
  left: 0;
  width: 90%;
  margin: 0 auto;
  top: -70%;
}
@media screen and (max-width: 767.5px) {
  .our_product .image-container img {
    top: unset;
  }
}
.our_product .circle2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 29, 48, 0.0901960784) 50%,
    #001d30 55%
  );
  transform: translate(-50%, -50%) scale(1);
  animation: zoom-animation 3s infinite;
  pointer-events: none;
  box-shadow: 10px 10px 150px #001d30;
}
@media screen and (max-width: 767.5px) {
  .our_product .circle2 {
    top: 30%;
  }
}
@keyframes zoom-animation {
  0% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.join_green_revoluation_wrapper {
  margin-top: 8.8rem;
}
@media screen and (max-width: 1440px) {
  .join_green_revoluation_wrapper {
    margin-top: 5.8rem;
  }
}
.join_green_revoluation_wrapper .join_green_revoluation_content {
  border-radius: 24px;
  /* background-image: url(../img/bg_cloud.png); */
  /* background-repeat: no-repeat;
  background-size: cover; */
  padding: 4.5rem 5.8rem;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.join_green_revoluation_wrapper .join_green_revoluation_video {
  border-radius: 16px;
}
@media screen and (max-width: 991.5px) {
  .join_green_revoluation_wrapper .join_green_revoluation_content {
    /* background-image: url(../img/bg_cloud_mob.png); */
    padding: 2rem 2rem 24rem;
  }
}
.join_green_revoluation_wrapper .join_green_revoluation_content h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  font-weight: 600;
  line-height: clamp(3.8rem, 2.2vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
.join_green_revoluation_wrapper .join_green_revoluation_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1vw, 2rem);
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.2rem 0 3rem;
}
.join_green_revoluation_wrapper .join_green_revoluation_content .calculate_now {
  background-color: #fff;
  outline: 0;
  border: none;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 1.6rem 5.5rem;
  border-radius: 8px;
  color: #333331;
  text-decoration: none;
}
.join_green_revoluation_wrapper .join_green_revoluation_content .corner_img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767.5px) {
  .join_green_revoluation_wrapper .join_green_revoluation_content .corner_img {
    width: 100%;
  }
}
@media screen and (max-width: 767.5px) {
  .join_green_revoluation_wrapper
    .join_green_revoluation_content
    .corner_img
    img {
    width: 100%;
  }
}
.testimonials_wrapper {
  margin-top: 8.8rem;
}
@media screen and (max-width: 1440px) {
  .testimonials_wrapper {
    margin-top: 5.8rem;
  }
}
.testimonials_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4rem);
  font-weight: 500;
  line-height: 4.8rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.testimonials_wrapper .testimonials_card {
  box-shadow: 0 0 23.32px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.8rem;
}
@media screen and (max-width: 1440px) {
  .testimonials_wrapper .testimonials_card {
    margin-bottom: 2rem;
  }
}
.testimonials_wrapper .testimonials_card .play_btn1,
.testimonials_wrapper .testimonials_card .play_btn2 {
  cursor: pointer;
  transition: 0.5s;
}
.testimonials_wrapper .testimonials_card .play_btn1:hover,
.testimonials_wrapper .testimonials_card .play_btn2:hover {
  transform: scale(1.03);
  cursor: pointer;
}
@media screen and (max-width: 767.5px) {
  .testimonials_wrapper .testimonials_card .play_btn1:hover,
  .testimonials_wrapper .testimonials_card .play_btn2:hover {
    transform: scale(1);
  }
}
.testimonials_wrapper .testimonials_card .testimonials_content {
  width: 60%;
  overflow: hidden;
}
@media screen and (max-width: 991.5px) {
  .testimonials_wrapper .testimonials_card .testimonials_content {
    width: 100%;
  }
}
.testimonials_wrapper .testimonials_card .testimonials_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1vw, 2rem);
  font-weight: 400;
  line-height: clamp(2.5rem, 1vw, 3.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(26, 26, 25, 0.8);
}
@media screen and (max-width: 991.5px) {
  .testimonials_wrapper .testimonials_card .testimonials_content p {
    text-align: center;
  }
}
.testimonials_wrapper .testimonials_card .testimonials_content h5 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1vw, 1.8rem);
  font-weight: 600;
  line-height: 2.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #424242;
  margin: 3.5rem 0 0.9rem;
}
@media screen and (max-width: 991.5px) {
  .testimonials_wrapper .testimonials_card .testimonials_content h5 {
    text-align: center;
  }
}
.testimonials_wrapper .testimonials_card .testimonials_content .designation {
  font-family: "Exo 2", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(0, 0, 0, 0.3803921569);
  display: block;
}
@media screen and (max-width: 991.5px) {
  .testimonials_wrapper .testimonials_card .testimonials_content .designation {
    text-align: center;
  }
}
.testimonials_wrapper .testimonials_card .corner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
}
.testimonials_wrapper .testimonials_card .corner_img_right {
  position: absolute;
  right: 0;
  top: 0;
}
#videoContainer iframe {
  height: 400px;
}
@media screen and (max-width: 767.5px) {
  #videoContainer iframe {
    height: auto;
  }
}
.award_wrapper {
  margin-top: 8.8rem;
}
@media screen and (max-width: 1440px) {
  .award_wrapper {
    margin-top: 5.8rem;
  }
}
.award_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4rem);
  font-weight: 500;
  line-height: 4.8rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.award_wrapper h5 {
  font-family: Cairo, sans-serif;
  font-size: 2.6rem;
  font-size: clamp(1.8rem, 1.6vw, 2.6rem);
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0.01em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1a1a19;
  text-transform: uppercase;
}
.award_wrapper .marquee {
  padding: 10px 0;
  display: flex;
  overflow: hidden;
  /* gap: 1rem; */
  position: relative;
  user-select: none;
}
@media screen and (max-width: 767.5px) {
  .award_wrapper .marquee {
    flex-direction: column;
  }
}
/* @media screen and (max-width: 767.5px) { */
/* .award_wrapper .left_crnr { */
/* width: 100px; */
/* } */
/* } */
/* @media screen and (max-width: 767.5px) { */
/* .award_wrapper .right_crnr { */
/* width: 100px; */
/* } */
/* } */
.award_wrapper .marquee .marquee-content {
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 5rem;
  animation: scroll 10s linear infinite;
}
@media screen and (max-width: 767.5px) {
  .award_wrapper .marquee .marquee-content {
    min-width: unset;
    gap: 2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767.5px) {
  .award_wrapper .marquee .marquee-content2 {
    animation: scroll2 14s linear infinite;
  }
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  -webkit-animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 40s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@-webkit-keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
/* @keyframes scroll { */
/* 0% { */
/* transform: translateX(0); */
/* } */
/* 100% { */
/* transform: translateX(-100%); */
/* } */
/* } */
/* @keyframes scroll2 { */
/* 0% { */
/* transform: translateX(0); */
/* } */
/* 100% { */
/* transform: translateX(-100%); */
/* } */
/* } */
/* @media screen and (max-width: 767.5px) { */
/* @keyframes scroll { */
/* 0% { */
/* transform: translateX(0); */
/* } */
/* 100% { */
/* transform: translateX(-200%); */
/* } */
/* } */
/* @keyframes scroll2 { */
/* 0% { */
/* transform: translateX(0); */
/* } */
/* 100% { */
/* transform: translateX(-200%); */
/* } */
/* } */
/* } */
.news_wrapper {
  margin-top: 8.8rem;
}
@media screen and (max-width: 1440px) {
  .news_wrapper {
    margin-top: 5.8rem;
  }
}
@media screen and (max-width: 767.5px) {
  .news_wrapper {
    margin-top: 2.8rem;
  }
}
.news_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4rem);
  font-weight: 500;
  line-height: 4.8rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.news_wrapper .see_more {
  color: #01a753;
  border: 1.3px solid #01a753;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 1.6rem 5rem;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  margin: 4.2rem auto 0;
  display: block;
}
.news_wrapper .see_more:hover {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  color: #fff;
  transition: 0.3s;
}
.news_wrapper .see_more:hover .hover-svg path {
  stroke: #fff;
  transition: 0.3s;
}

.news_wrapper .news_slider .slick-list {
  padding: 10px 0 10px 0 !important;
}
.news_wrapper .news_card {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 1.6rem;
  width: 30%;
  transition: 0.6s;
  flex-wrap: wrap;
  overflow: hidden;
}
@media screen and (max-width: 991.5px) {
  .news_wrapper .news_card {
    width: 45%;
  }
}
@media screen and (max-width: 767.5px) {
  .news_wrapper .news_card {
    width: 100%;
    margin: 0 10px;
    height: 400px;
  }
}
.news_wrapper .news_card:hover {
  transition: 0.6s;
  transform: scale(1.1);
}
@media screen and (max-width: 767.5px) {
  .news_wrapper .news_card:hover {
    transform: scale(1);
  }
}
.news_wrapper .news_card .news_card_content {
  padding: 1.6rem;
}
.news_wrapper .news_card .news_card_content span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.4em;
  color: #6c757d;
  margin-bottom: 1.5rem;
  display: block;
}
.news_wrapper .news_card .news_card_content h4 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.4vw, 2rem);
  font-weight: 600;
  line-height: 2.8rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 8px;
}
.news_wrapper .news_card .news_card_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4em, 1.2vw, 1.6rem);
  line-height: clamp(2.5rem, 2.2vw, 3.2rem);
  font-weight: 500;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #595959;
}
.foundation_wrapper {
  margin-top: 8.8rem;
}
@media screen and (max-width: 1440px) {
  .foundation_wrapper {
    margin-top: 5.8rem;
  }
}
.foundation_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  font-weight: 600;
  line-height: clamp(3.8rem, 2.2vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.foundation_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4em, 1.2vw, 1.6rem);
  font-weight: 500;
  line-height: 3.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #343434;
  margin: 1.6rem 0 3.2rem;
}
.foundation_wrapper .know_more {
  color: #01a753;
  border: 1.3px solid #01a753;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 1.6rem 5rem;
  border-radius: 8px;
  text-decoration: none;
}
@media screen and (max-width: 767.5px) {
  .foundation_wrapper .know_more {
    width: 100%;
  }
}
.foundation_wrapper .know_more:hover {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  color: #fff;
  transition: 0.3s;
}
.foundation_wrapper .know_more:hover .hover-svg path {
  stroke: #fff;
  transition: 0.3s;
}
.foundation_wrapper img {
  border-radius: 12px;
  transition: 0.5s;
}
.foundation_wrapper .ece_india:hover {
  transform: scale(1.05);
  transition: 0.5s;
}
@media screen and (max-width: 767.5px) {
  .foundation_wrapper .ece_india:hover {
    transform: scale(1);
  }
}
.hear_from_client_warpper {
  margin-top: 8.8rem;
}
@media screen and (max-width: 1440px) {
  .hear_from_client_warpper {
    margin-top: 2.8rem;
  }
}
.hear_from_client_warpper .client_img {
  overflow: hidden;
}
.hear_from_client_warpper .client_img img {
  display: block;
  position: relative;
  transform: translateY(0) rotate(0);
  opacity: 1;
}
.hear_from_client_warpper .designation_content {
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 65px 55px;
  height: 480px;
}
@media screen and (max-width: 767.5px) {
  .hear_from_client_warpper .designation_content {
    box-shadow: unset;
    border-radius: unset;
    padding: unset;
    height: unset;
  }
}
.hear_from_client_warpper .designation_content h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.5vw, 4rem);
  font-weight: 600;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1a1a19;
  padding-bottom: 2.3rem;
}
.hear_from_client_warpper .designation_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4em, 1.2vw, 1.6rem);
  line-height: clamp(2.5rem, 2.2vw, 3.2rem);
  font-weight: 500;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #595959;
}
.hear_from_client_warpper .designation_content #client-testimonial {
  color: #1a1a19;
}
.hear_from_client_warpper .designation_content .designation_wrapper {
  padding-top: 6.3rem;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 991.5px) {
  .hear_from_client_warpper .designation_content .designation_wrapper {
    position: unset;
  }
}
.hear_from_client_warpper
  .designation_content
  .designation_wrapper
  .client_data
  h5 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2.1rem);
  font-weight: 500;
  line-height: 25.67px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.hear_from_client_warpper
  .designation_content
  .designation_wrapper
  .client_data
  .designation {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  font-weight: 400;
  line-height: 17.11px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(0, 0, 0, 0.3803921569);
}
.hear_from_client_warpper
  .designation_content
  .designation_wrapper
  .client_img {
  width: 54px;
  /* height: 54px; */
}
.hear_from_client_warpper
  .designation_content
  .designation_wrapper
  #client-image {
  padding: 2px;
  border-radius: 50px;
  border: 4px solid #d9d9d9;
}
.hear_from_client_warpper
  .designation_content
  .designation_wrapper
  .clients_images {
  position: relative;
  cursor: pointer;
}
.hear_from_client_warpper
  .designation_content
  .designation_wrapper
  .clients_images::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 1px;
  background-color: grey;
  left: -15px;
  top: 25%;
}
.hear_from_client_warpper .prev_next_img {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 991.5px) {
  .hear_from_client_warpper .prev_next_img {
    position: unset;
    text-align: center;
  }
}
.hear_from_client_warpper .prev_next_img img {
  width: 30%;
  cursor: pointer;
}
@media screen and (max-width: 991.5px) {
  .hear_from_client_warpper .prev_next_img img {
    width: 10%;
  }
}
@media screen and (max-width: 767.5px) {
  .hear_from_client_warpper .prev_next_img img {
    width: 20%;
  }
}
@media screen and (max-width: 767.5px) {
  .hear_from_client_warpper .designation_content_inner {
    box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 35px 22px 80px;
  }
}
.hear_from_client_warpper .designation_content_inner .clnt_ellips_bg {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: end;
}
.hear_from_client_warpper .designation_content_inner .clnt_ellips_bg img {
  width: 70%;
}
.mw_wrapper {
  position: relative;
  padding: 90px 0;
  margin-top: 2rem;
}
/* @media screen and (max-width: 1440px) { */
/* .mw_wrapper { */
/* margin-top: 5.8rem; */
/* } */
/* } */
.mw_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.6rem, 2.2vw, 3.8rem);
  font-weight: 400;
  line-height: 38.4px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 991.5px) {
  .mw_wrapper h2 {
    text-align: center;
  }
}
.mw_wrapper .contact_us {
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 24.13px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 2.2rem 9.6rem;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  border-radius: 1.2rem;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  margin-top: 2.6rem;
}
@media screen and (max-width: 1440px) {
  .mw_wrapper .contact_us {
    padding: 1.8rem 9.6rem;
  }
}
.mw_wrapper .mw_text {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3.2rem, 3vw, 4.8rem);
  font-weight: 600;
  line-height: 57.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #00aeef;
}
@media screen and (max-width: 991.5px) {
  .mw_wrapper .mw_text {
    display: block;
    text-align: center;
  }
}
.mw_wrapper .mw_img {
  position: absolute;
  right: 0;
  width: 45%;
  bottom: -35px;
}
.mw_wrapper .mw_bg_view {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  z-index: -2;
  padding: 0;
}
footer {
  background: linear-gradient(102.69deg, #00a7e1 0, #00a551 100.55%);
  margin-top: 4rem;
  padding: 4rem 0 2rem;
}
@media screen and (max-width: 991.5px) {
  footer {
    background: linear-gradient(180deg, #02a9e0 0, #02a757 130.23%);
  }
}
/* footer .footer_logo_img { */
/* padding: 8rem 0 6.4rem; */
/* } */
/* @media screen and (max-width: 1440px) { */
/* footer .footer_logo_img { */
/* padding: 6rem 0 5.4rem; */
/* } */
/* } */
footer p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 19.2px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
footer a {
  color: #fff;
  text-decoration: none;
  display: inline;
}
footer a:hover {
  color: #fff;
}
@media screen and (max-width: 991.5px) {
  footer .footer_content {
    justify-content: flex-start !important;
  }
}
footer .footer_content .footer_items {
  gap: 70px;
}
@media screen and (max-width: 991.5px) {
  footer .footer_content .footer_items {
    gap: unset;
  }
}
@media screen and (max-width: 991.5px) {
  footer .footer_content .footer_items2 {
    margin-top: 5rem;
  }
}
footer .footer_content .about_us,
footer .footer_content .product,
footer .footer_content .solution {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 20px;
  letter-spacing: -0.1599999964px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
footer .footer_content ul li {
  padding-bottom: 2.2rem;
}
@media screen and (max-width: 1440px) {
  footer .footer_content ul li {
    padding-bottom: 2rem;
  }
}
footer .footer_content ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 991.5px) {
  footer .footer_content .solution_wrap {
    margin-left: 3rem;
  }
}
@media screen and (max-width: 991.5px) {
  footer .footer_content .blog_wrap {
    margin-left: 7rem;
  }
}
footer .footer_content .adrress_wrap {
  width: 30%;
}
@media screen and (max-width: 991.5px) {
  footer .footer_content .adrress_wrap {
    width: 100%;
  }
}
footer .footer_content .adrress_wrap .follow_us {
  font-weight: 700;
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
}
footer .footer_content .adrress_wrap .social_links {
  margin: 20px 0 20px;
}
@media screen and (max-width: 991.5px) {
  footer .footer_content .adrress_wrap .social_links {
    gap: 20px;
    justify-content: flex-start !important;
  }
}
footer .footer_content .adrress_wrap .social_links_item {
  width: 38px;
}
footer .footer_content .adrress_wrap .corporate_addrss {
  margin-top: 2.6rem;
}
footer .footer_content .adrress_wrap .store_locator_btn {
  padding: 10px 50px;
  background-color: #fff;
  border-radius: 8px;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: #00a650;
  margin-top: 4rem;
}
footer .contact_us img {
  width: 20px;
}
/* @media screen and (max-width: 1440px) { */
/* footer .contact_us { */
/* margin: 6rem 0 2.6rem; */
/* } */
/* } */
footer .terms_and_condtions {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
footer .terms_and_condtions .privacy_policy {
  width: 30%;
}
@media screen and (max-width: 767.5px) {
  footer .terms_and_condtions .privacy_policy {
    width: 100%;
  }
}
.chat_with_us {
  position: fixed;
  top: 80%;
  right: 40px;
  z-index: 90;
  text-align: end;
  cursor: pointer;
}
@media screen and (max-width: 991.5px) {
  .chat_with_us {
    top: 70%;
    right: 20px;
  }
}
.chat_with_us .call_back_btn {
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 12px;
  padding: 4px 10px;
  color: var(--Heading-color, #0b254b);
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  margin-bottom: 10px;
  position: relative;
}
.chat_with_us .call_back_btn::after {
  content: "";
  position: absolute;
  bottom: -13px;
  right: 20px;
  border-top: 7px solid #fff;
  border-bottom: 7px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
.chat_with_us .calculate_now {
  background-color: transparent;
  border: none;
  outline: none;
  width: 50px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000000001;
}
.modal-open {
  padding-right: 0 !important;
}
.modal_content_1 {
  background-color: #fefefe;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  padding: 5px;
  border-radius: 8px;
  z-index: 9999;
}
@media screen and (max-width: 767.5px) {
  .modal_content_1 {
    width: 93%;
  }
}
.closeNew {
  font-size: 25px;
  color: #fff;
  position: absolute;
  top: -20px;
  right: -15px;
  cursor: pointer;
  font-weight: 700;
  z-index: 22;
}
.solar_images {
  height: 500px;
}
@media screen and (max-width: 1300px) {
  .solar_images {
    height: 420px;
  }
}
.solar_images .slr {
  position: absolute;
  width: 50%;
  bottom: -30px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  display: none;
  z-index: 5;
  transform: translateY(100%) rotate(90deg);
}
@media screen and (max-width: 767.5px) {
  .solar_images .slr {
    width: 80%;
  }
}
.solar_images .slr.active {
  opacity: 1;
  display: block;
  transform: translateY(0) rotate(0);
}
.solar_images .slr.exit-left {
  transform: translateX(-100%) rotate(-90deg);
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
  z-index: 3;
}
.solar_images .slr.exit-right {
  transform: translateX(100%) rotate(90deg);
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
  z-index: 3;
}
.product_category_wrapper img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.product_category_wrapper .product_category_content {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767.5px) {
  .product_category_wrapper .product_category_content {
    top: 40%;
  }
}
.product_category_wrapper .product_category_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2.5vw, 4rem);
  font-weight: 700;
  line-height: clamp(3rem, 3vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
.product_category_wrapper .product_category_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .product_category_wrapper .product_category_content p {
    line-height: 2.6rem;
  }
}
@media screen and (max-width: 767.5px) {
  .product_category_wrapper .product_category_content p br {
    display: none;
  }
}
.product_category_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767.5px) {
  .product_category_wrapper .breadcrumb {
    top: 18%;
  }
}
.product_category_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.product_category_wrapper .breadcrumb li a {
  color: #fff;
  text-decoration: none;
}
.all_ategories_wrapper {
  position: relative;
  margin-top: 4.8rem;
}
@media screen and (max-width: 1440px) {
  .all_ategories_wrapper {
    margin-top: 3.8rem;
  }
}
.all_ategories_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 1440px) {
  .all_ategories_wrapper h2 {
    line-height: 4.1rem;
  }
}
.all_ategories_wrapper .all_categories_list {
  position: sticky;
  top: 20%;
}
.all_ategories_wrapper .all_categories_list li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  cursor: pointer;
  font-weight: 500;
  line-height: 3.2rem;
  text-align: left;
  color: #767676;
  padding-bottom: 15px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e4e4e4;
}
@media screen and (max-width: 767.5px) {
  .all_ategories_wrapper .all_categories_list li {
    text-align: center;
    padding: 10px 4px;
    border-radius: 8px;
    border: 1px solid #00a650;
    margin: 0 10px;
  }
}
.all_ategories_wrapper .all_categories_list .active {
  background: linear-gradient(90deg, #00a650 80.56%, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767.5px) {
  .all_ategories_wrapper .all_categories_list .active {
    color: #fff;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background: linear-gradient(90deg, #00a650 80.56%, #00adeb 100%);
  }
}
.all_ategories_wrapper .all_categories_list_slider .slick-list {
  padding: 10px 9% 10px 0 !important;
}
.all_ategories_wrapper .product_card {
  padding: 5rem;
  background: linear-gradient(0deg, #cdedff 0, rgba(205, 237, 255, 0) 103.8%);
  border-radius: 2.4rem;
}
@media screen and (max-width: 767.5px) {
  .all_ategories_wrapper .product_card {
    padding: 2rem;
  }
}
.all_ategories_wrapper .product_card .card_content {
  padding: 0 20px;
}
@media screen and (max-width: 767.5px) {
  .all_ategories_wrapper .product_card .card_content {
    padding: unset;
  }
}
.all_ategories_wrapper .product_card .card_content h2 {
  font-weight: 700;
}
.all_ategories_wrapper .product_card .card_content p {
  font-family: "Exo 2", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.9rem;
  text-align: left;
  color: rgba(46, 46, 46, 0.8980392157);
  margin: 16px 0;
}
.all_ategories_wrapper .product_card .card_content h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 28.96px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(46, 46, 46, 0.8980392157);
}
.all_ategories_wrapper .product_card .card_content .know_more {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  padding: 1.6rem 0;
  font-size: 1.6rem;
  border-radius: 7px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 6.4rem;
}
.product_preview_wrapper {
  margin-top: 4.8rem;
}
@media screen and (max-width: 1440px) {
  .product_preview_wrapper {
    margin-top: 3.8rem;
  }
}
.product_preview_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.product_preview_wrapper .compare_prdct {
  background: linear-gradient(90deg, #00a650 80.56%, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.5vw, 2.4rem);
  font-weight: 400;
  line-height: 38.4px;
  text-align: right;
  border-bottom: 1px solid #00a650;
}
.product_preview_wrapper .product_preview_content .product_preview_card {
  border: 1px solid #ebebeb;
  border-radius: 12px;
  transition: 0.3s;
  overflow: hidden;
  margin-bottom: 20px;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card
  .preview_img_wrapp {
  display: flex;
  justify-content: center;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card
  .preview_img_wrapp
  .preview1 {
  position: absolute;
  transform: scale(1.1);
  left: 30px;
  transition: 0.8s;
  bottom: -30px;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card
  .preview_img_wrapp
  .preview2 {
  transform: translateY(100%);
  margin-left: 50px;
  transition: 0.8s;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card
  .preview_img_wrapp
  img {
  width: 70%;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card
  .preview_content {
  background: #f8f8f8;
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0 0 12px 12px;
  z-index: 5;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card
  .preview_content
  h4 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.5vw, 2.4rem);
  color: #424242;
  line-height: 24px;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card
  .preview_content
  p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin-top: 12px;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card
  .preview_content
  .knw_mr_prv {
  position: absolute;
  right: 20px;
  top: 15px;
}
.product_preview_wrapper .product_preview_content .product_preview_card:hover {
  background: linear-gradient(0deg, #cdedff 0, rgba(205, 237, 255, 0) 100%);
  transition: 0.8s;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card:hover
  h4,
.product_preview_wrapper
  .product_preview_content
  .product_preview_card:hover
  p {
  color: #fff;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card:hover
  .preview_content {
  background: #07314a;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card:hover
  .preview1 {
  transform: scale(1);
  transition: 0.8s;
}
.product_preview_wrapper
  .product_preview_content
  .product_preview_card:hover
  .preview2 {
  transform: translateY(15%);
  transition: 0.8s;
}
.product_detail_wrapper {
  margin-bottom: 20rem;
}
@media screen and (max-width: 767.5px) {
  .product_detail_wrapper {
    margin-bottom: 15rem;
  }
}
/* #water_heater:hover { */
/* transition: 0.5s; */
/* scale: 1.07; */
/* } */
.product_detail_wrapper .banner_img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  width: 100%;
}
.product_detail_wrapper .solr_mob {
  position: absolute;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20%;
}
@media screen and (max-width: 767.5px) {
  .product_detail_wrapper .solr_mob {
    width: 70%;
    z-index: 3;
  }
}
.product_detail_wrapper .product_detail_content {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
.product_detail_wrapper .product_detail_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(5rem, 2vw, 6.4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
.product_detail_wrapper .product_detail_content h1 span {
  font-weight: 300;
  margin-left: 30px;
  position: relative;
}
.product_detail_wrapper .product_detail_content h1 span::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #fff;
  left: -24px;
  top: 24px;
}
.product_detail_wrapper .product_detail_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
.product_detail_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
.product_detail_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.product_detail_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.product_detail_wrapper .datasheet_enquire_wrap {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  gap: 10px;
  padding: 12px;
  border-radius: 36px;
  background-color: #fff;
}
@media screen and (max-width: 767.5px) {
  .product_detail_wrapper .datasheet_enquire_wrap {
    width: 80%;
    justify-content: center;
    bottom: -100px;
  }
}
.product_detail_wrapper .datasheet_enquire_wrap a {
  background: linear-gradient(90deg, #00a650 80.56%, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4em, 1vw, 1.6rem);
  font-weight: 500;
  line-height: 2rem;
  padding: 1.2rem 3.3rem;
  border: 1px solid #00a650;
  border-radius: 36px;
}
@media screen and (max-width: 1440px) {
  .product_detail_wrapper .datasheet_enquire_wrap a {
    padding: 0.6rem 2rem;
  }
}
.detail_features_wrapper .detail_features_list_items {
  border-bottom: 1.5px solid #e4e4e4;
}
.detail_features_wrapper .detail_features_list_items li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 600;
  line-height: 1.9rem;
  color: #727d89;
  padding: 25px;
  cursor: pointer;
}
.detail_features_wrapper .detail_features_list_items .active {
  position: relative;
  background: linear-gradient(90deg, #00a650 80.56%, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.detail_features_wrapper .detail_features_list_items .active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
}
.detail_features_wrapper .features_content ul li,
.detail_features_wrapper .technology_content ul li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 1.8rem);
  font-weight: 400;
  line-height: 21.72px;
  margin: 35px 0;
  position: relative;
  overflow: hidden;
  /* border-radius: 12px; */
  cursor: pointer;
  width: fit-content;
}
@media screen and (max-width: 1440px) {
  .detail_features_wrapper .features_content ul li,
  .detail_features_wrapper .technology_content ul li {
    margin: 30px 0;
  }
}
.detail_features_wrapper .features_content ul li p,
.detail_features_wrapper .technology_content ul li p {
  padding: 13px;
  background: linear-gradient(
    90deg,
    rgba(0, 166, 80, 0.04) 80.56%,
    rgba(0, 173, 235, 0.04) 100%
  );
  border-radius: 12px;
}
.detail_features_wrapper .features_content ul li::before,
.detail_features_wrapper .technology_content ul li::before {
  position: absolute;
  content: "";
  left: 0;
  height: 100%;
  width: 6px;
  transition: 0.5s;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: -1;

  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
}
.detail_features_wrapper .features_content ul li:hover::before,
.detail_features_wrapper .technology_content ul li:hover::before {
  width: 100%;
  transition: 0.5s;
}
.detail_features_wrapper .features_content ul li:hover p,
.detail_features_wrapper .technology_content ul li:hover p {
  color: #fff;
}
.detail_features_wrapper .product_toggle-arrow .prev {
  position: absolute;
  top: 50%;
  left: 50px;
  background: 0 0;
  border: 1px solid #0e7d4b;
  outline: 0;
  border-radius: 50px;
  padding: 10px 14px;
  z-index: 6;
}
@media screen and (max-width: 767.5px) {
  .detail_features_wrapper .product_toggle-arrow .prev {
    left: 20px;
  }
}
.detail_features_wrapper .product_toggle-arrow .next {
  background: 0 0;
  border: 1px solid #0e7d4b;
  outline: 0;
  border-radius: 50px;
  padding: 5px 5px;
  position: absolute;
  top: 50%;
  right: 50px;
  z-index: 6;
}
@media screen and (max-width: 767.5px) {
  .detail_features_wrapper .product_toggle-arrow .next {
    right: 20px;
  }
}
.suitability_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .suitability_wrapper {
    margin-top: 7rem;
  }
}
.suitability_wrapper .suitability_wrapp {
  border-radius: 24px;
}
.suitability_wrapper .suitability_wrapp .suitability_content {
  position: absolute;
  top: 40%;
  transform: translateY(-60%);
  margin: 80px;
}
@media screen and (max-width: 767.5px) {
  .suitability_wrapper .suitability_wrapp .suitability_content {
    top: 10%;
    transform: unset;
    margin: 15px;
  }
}
.suitability_wrapper .suitability_wrapp .suitability_content h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4.8rem);
  font-weight: 700;
  line-height: 6.2rem;
  color: #fff;
}
.suitability_wrapper .suitability_wrapp .suitability_content h2 span {
  color: #96e3ff;
}
.suitability_wrapper .suitability_wrapp .suitability_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
  margin-bottom: 7rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767.5px) {
  .suitability_wrapper .suitability_wrapp .suitability_content p {
    margin-bottom: 3rem;
    margin-top: 0.6rem;
  }
}
.suitability_wrapper .suitability_wrapp .suitability_content .temperature_reng {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  font-weight: 700;
  line-height: 5.1rem;
  color: #fff;
  padding: 10px 20px;
  border: 0.5px solid #fff;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  display: inline-block;
}
@media screen and (max-width: 767.5px) {
  .suitability_wrapper
    .suitability_wrapp
    .suitability_content
    .temperature_reng {
    padding: 8px 15px;
  }
}
.suitability_wrapper .suitability_wrapp .sutaible_solar_img {
  position: absolute;
  right: 0;
  bottom: -20%;
  width: 80%;
}
.suitability_wrapper .suitability_wrapp .sutaible_solar_img2 {
  position: absolute;
  right: 100px;
  bottom: 0;
}
@media screen and (max-width: 767.5px) {
  .suitability_wrapper .suitability_wrapp .sutaible_solar_img2 {
    position: absolute;
    right: 0;
    bottom: -50px;
  }
}
.benefits_wrapper {
  position: relative;
  z-index: 30;
  background: #fff;
  padding-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .benefits_wrapper {
    padding-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .benefits_wrapper {
    padding-top: 5rem;
  }
}
.benefits_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4.8rem);
  font-weight: 700;
  line-height: 6.2rem;
  color: #2e2e2e;
  text-align: center;
  margin-bottom: 3rem !important;
}
@media screen and (max-width: 767.5px) {
  .benefits_wrapper h2 {
    margin-bottom: 6rem !important;
  }
}
.benefits_wrapper .benefit_solar_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
}
@media screen and (max-width: 767.5px) {
  .benefits_wrapper .benefit_solar_img {
    position: unset;
    transform: unset;
    width: 100%;
  }
}
.benefits_wrapper ul li {
  margin-bottom: 9rem;
}
@media screen and (max-width: 1440px) {
  .benefits_wrapper ul li {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767.5px) {
  .benefits_wrapper ul li {
    margin-bottom: 7rem;
  }
}
.benefits_wrapper ul li h3 {
  font-size: clamp(1.8rem, 1.2vw, 2rem);
  font-family: "Exo 2", sans-serif;
  color: #2e2e2e;
  font-weight: 400;
  margin-bottom: 12px;
}
.benefits_wrapper ul li p {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-family: "Exo 2", sans-serif;
  color: #666;
  font-weight: 400;
  width: 110%;
}
@media screen and (max-width: 767.5px) {
  .benefits_wrapper ul li p {
    width: auto;
  }
}
/* &new css for benefits */
.transform_card1 {
  transform: translateX(60px);
}
@media screen and (max-width: 767.5px) {
  .transform_card1 {
    transform: unset;
  }
}
.transform_card2 {
  transform: translateX(-20px);
}
@media screen and (max-width: 767.5px) {
  .transform_card2 {
    transform: unset;
  }
}
.transform_card3 {
  transform: translateX(-60px);
}
@media screen and (max-width: 767.5px) {
  .transform_card3 {
    transform: unset;
  }
}
.transform_card4 {
  transform: translateX(20px);
}
@media screen and (max-width: 767.5px) {
  .transform_card4 {
    transform: unset;
  }
}
.poduct_detail_card {
  position: relative;
  height: 100px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: 0.5s;
  overflow: hidden;
}
@media screen and (max-width: 767.5px) {
  .poduct_detail_card {
    height: auto;
    overflow: visible;
    border: 1px solid #00adeb;
    padding: 30px 30px 15px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 44%);
  }
}

.poduct_detail_card h3 {
  position: absolute;
  top: 50%;
  width: 90%;
  margin: 0 auto;
  transform: translateY(-50%);

  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  left: 0;
  color: #fff !important;
  right: 0;
  padding: 20px 0;
  border-radius: 12px;
  transition: 0.5s;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}
@media screen and (max-width: 767.5px) {
  .poduct_detail_card h3 {
    position: unset;
    height: unset;
    width: 80%;
    position: absolute;
    top: -50px;
    transform: unset;
  }
}
.poduct_detail_card p {
  position: absolute;
  top: 120px;
  width: 100% !important;
  padding: 0 10px;
  text-align: center;
  transition: 0.5s;
  opacity: 0;
  font-size: clamp(1.6rem, 1.1vw, 1.6rem) !important;
  /* left:0; */
}
@media screen and (max-width: 767.5px) {
  .poduct_detail_card p {
    position: unset;
    opacity: 1;
  }
}

.poduct_detail_card:hover p {
  top: 50px;
  transition: 0.6s;
  opacity: 1;
}
.poduct_detail_card:hover {
  height: 180px;
  transition: 0.5s;
  overflow: visible;
  border: 1px solid #00adeb;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 44%);
}
@media screen and (max-width: 767.5px) {
  .poduct_detail_card:hover {
    height: auto;
    overflow: visible;
  }
}

.poduct_detail_card:hover h3 {
  top: -4px;
  transition: 0.5s;
  width: 80%;
}
@media screen and (max-width: 767.5px) {
  .poduct_detail_card:hover h3 {
    top: -40px;
  }
}

.card_btm {
  left: 140%;
  z-index: 2;
  top: 120px;
}

@media screen and (max-width: 767.5px) {
  .card_btm {
    transform: unset;
    top: unset;
    left: unset;
  }
}
/* &new css for benefit end  */
.certification_awards_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .certification_awards_wrapper {
    margin-top: 7rem;
  }
}
.certification_awards_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4.8rem);
  font-weight: 700;
  line-height: 6.2rem;
  color: #2e2e2e;
  text-align: center;
  margin-bottom: 5rem;
}
.certification_awards_wrapper .awards_images_warpp .award_slider .slick-list {
  padding: 10px 9% 10px 0 !important;
}
@media screen and (max-width: 767.5px) {
  .certification_awards_wrapper .awards_images_warpp .award_img {
    margin-right: 40px;
  }
}
.certification_awards_wrapper .awards_images_warpp .award_img img {
  aspect-ratio: 3/2;
  object-fit: contain;
}
@media screen and (max-width: 767.5px) {
  .certification_awards_wrapper .awards_images_warpp .award_img img {
    margin: 0 auto;
  }
}
.awards_images_warpp {
  gap: 5rem;
}
.award_img {
  width: 160px;
  height: 80px;

  perspective: 1000px;
}

.flip-box {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.award_img:hover .flip-box {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-box-back {
  transform: rotateY(180deg);
}

.flip-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767.5px) {
  .flip-box img {
    height: auto;
  }
}
.specification_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .specification_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .specification_wrapper {
    margin-top: 4rem;
  }
}
.specification_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4.8rem);
  font-weight: 700;
  line-height: 6.2rem;
  color: #2e2e2e;
}
.specification_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #666;
  margin: 16px 0 40px;
}
.specification_wrapper .specification_table {
  border: 1px solid #e9ecef;
  border-radius: 11px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.specification_wrapper .specification_table tr:hover {
  background-color: #e9ecef;
  transition: 0.3s;
}
.specification_wrapper .specification_table thead {
  background: #e9ecef;
}
.specification_wrapper .specification_table td,
.specification_wrapper .specification_table th {
  border-bottom: 1px solid #e9ecef;
  padding: 24px 16px;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4em, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: #2e2e2e;
  transition: 0.5s;
}
@media screen and (max-width: 1440px) {
  .specification_wrapper .specification_table td,
  .specification_wrapper .specification_table th {
    padding: 20px 16px;
  }
}
.specification_wrapper .specification_table td:hover,
.specification_wrapper .specification_table th:hover {
  color: #00a551;
  transition: 0.5s;
}
.similar_products_wrapper {
  margin-top: 9rem;
}
.similar_products_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4.8rem);
  font-weight: 700;
  line-height: 6.2rem;
  color: #2e2e2e;
  margin-bottom: 50px;
}
@media screen and (max-width: 1440px) {
  .similar_products_wrapper h2 {
    margin-bottom: 30px;
  }
}
.similar_products_wrapper .view_all {
  font-size: clamp(1.6em, 1.2vw, 2rem);
  line-height: 2rem;
  background: linear-gradient(90deg, #00a650 80.56%, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid #00a650;
}
.similar_products_wrapper .space {
  gap: 60px;
}
.similar_products_wrapper .similar_product_content {
  border: 1px solid #ebebeb;
  border-radius: 18px;
  box-shadow: 0 1.46px 7.3px 0 rgba(0, 0, 0, 0.04);
  padding: 2.3rem 1rem 1rem 0;
  overflow: hidden;
  width: 50%;
}
@media screen and (max-width: 767.5px) {
  .similar_products_wrapper .similar_product_content {
    width: unset;
  }
}
.similar_products_wrapper .similar_product_content .similar_prdct_img {
  margin-bottom: -30px;
}
.similar_products_wrapper .similar_product_content .similar_product_card {
  background: #07314a;
  border-radius: 12px;
  padding: 2rem 1.6rem;
}
.similar_products_wrapper .similar_product_content .similar_product_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.1vw, 1.8rem);
  font-weight: 600;
  line-height: 2rem;
  color: #fff;
}
.similar_products_wrapper .similar_product_content .similar_product_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 12px 0;
}
.similar_products_wrapper
  .similar_product_content
  .similar_product_card
  .know_more {
  color: #00d2fc;
  font-family: "Exo 2", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 16.89px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-decoration: none;
  padding: 12px 50px;
  text-align: center;
  border: 2px solid #00adeb;
  border-radius: 8px;
  width: 100%;
  margin: 4rem auto 0;
  display: block;
}
.solution_wrapper img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.solution_wrapper .solution_content {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767.5px) {
  .solution_wrapper .solution_content {
    /* top: 58%; */
    top: 45%;
  }
}
.solution_wrapper .solution_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
@media screen and (max-width: 767.5px) {
  .solution_wrapper .solution_content h1 {
    text-align: center;
  }
}
.solution_wrapper .solution_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .solution_wrapper .solution_content p {
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .solution_wrapper .solution_content p br {
    display: none;
  }
}
.solution_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767.5px) {
  .solution_wrapper .breadcrumb {
    top: 20%;
  }
}
.solution_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.solution_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.solution_categories_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .solution_categories_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .solution_categories_wrapper {
    margin-top: 4rem;
  }
}
.solution_categories_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.solution_categories_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 3rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin: 2.3rem 0 5.2rem;
}
@media screen and (max-width: 767.5px) {
  .solution_categories_wrapper p {
    margin: 1.2rem 0 4.2rem;
  }
}
@media screen and (max-width: 767.5px) {
  .solution_categories_wrapper p br {
    display: none;
  }
}
.solution_categories_wrapper .solution_category_card {
  border-radius: 1.6rem;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media screen and (max-width: 767.5px) {
  .solution_categories_wrapper .solution_category_card {
    margin-bottom: 2.4rem;
  }
}
.solution_categories_wrapper
  .solution_category_card
  .solution_category_card_content {
  padding: 3.6rem 2.3rem;
}
.solution_categories_wrapper
  .solution_category_card
  .solution_category_card_content
  h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 1vw, 2.8rem);
  font-weight: 600;
  line-height: 28.96px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.solution_categories_wrapper
  .solution_category_card
  .solution_category_card_content
  .know_more {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  padding: 1.4rem 3.7rem;
  font-size: 1.6rem;
  border-radius: 7px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.key_features_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .key_features_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .key_features_wrapper {
    margin-top: 4rem;
  }
}
.key_features_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767.5px) {
  .key_features_wrapper h2 {
    margin-bottom: 3rem;
  }
}
.key_features_wrapper .key_feature_content {
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}
@media screen and (max-width: 767.5px) {
  .key_features_wrapper .key_feature_content {
    box-shadow: unset;
  }
}
.key_features_wrapper .key_feature_content .advantages_card {
  margin-bottom: 6rem;
}
.key_features_wrapper .key_feature_content .advantages_card img {
  width: 15%;
}
.key_features_wrapper .key_feature_content .advantages_card h4 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 3rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin: 2.4rem 0 1.2rem;
}
@media screen and (max-width: 1440px) {
  .key_features_wrapper .key_feature_content .advantages_card h4 {
    margin: 1.4rem 0 1rem;
  }
}
.key_features_wrapper .key_feature_content .advantages_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4em, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 3rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin: 2.4rem 0 1.2rem;
}
@media screen and (max-width: 1440px) {
  .key_features_wrapper .key_feature_content .advantages_card p {
    margin: 1.4rem 0 1rem;
  }
}
.key_projects_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .key_projects_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .key_projects_wrapper {
    margin-top: 4rem;
  }
}
.key_projects_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767.5px) {
  .key_projects_wrapper h2 {
    margin-bottom: 3rem;
  }
}
.key_projects_wrapper .key_project_card {
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}
@media screen and (max-width: 767.5px) {
  .key_projects_wrapper .key_project_card {
    margin-bottom: 2.4rem;
  }
}
.key_projects_wrapper .key_project_card:hover .project_card_content {
  transform: translateY(0);
  transition: 0.5s;
}
.key_projects_wrapper .key_project_card:hover .project_image_1 {
  opacity: 0;
  transition: 0.5s;
}
.key_projects_wrapper .key_project_card:hover .project_image_2 {
  opacity: 1;
  transition: 0.5s;
}
.key_projects_wrapper .key_project_card .image_container .project_image_1 {
  position: absolute;
  transition: 0.5s;
}
.key_projects_wrapper .key_project_card .project_card_content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.5s;
  transform: translateY(60%);
}
.key_projects_wrapper .key_project_card h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 600;
  line-height: 3.1rem;
  text-align: left;
  color: #fff;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 24px 17px;
  margin-bottom: 0;
}
.key_projects_wrapper .key_project_card .project_details {
  background-color: #fff;
  width: 100%;
  padding: 24px 17px;
}
.key_projects_wrapper .key_project_card .project_details h4 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4em, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 3rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
.advantages_from_ece_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .advantages_from_ece_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .advantages_from_ece_wrapper {
    margin-top: 4rem;
  }
}
.advantages_from_ece_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 767.5px) {
  .advantages_from_ece_wrapper h2 {
    margin-bottom: 3rem;
  }
}
.advantages_from_ece_wrapper .advantages_from_ece_slider .slick-list {
  padding: 10px 9% 10px 0 !important;
}
.advantages_from_ece_wrapper .advtg_frm_ece_card {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 2.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1440px) {
  .advantages_from_ece_wrapper .advtg_frm_ece_card {
    padding: 1.1rem;
  }
}
@media screen and (max-width: 767.5px) {
  .advantages_from_ece_wrapper .advtg_frm_ece_card {
    padding: 2.1rem;
    height: 280px;
  }
}
.advantages_from_ece_wrapper .advtg_frm_ece_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 1vw, 2.4rem);
  font-weight: 600;
  line-height: 28.96px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 1.6rem 0 1.2rem;
}
.advantages_from_ece_wrapper .advtg_frm_ece_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4em, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
.commercial_building_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .commercial_building_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .commercial_building_wrapper {
    margin-top: 4rem;
  }
}
.commercial_building_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 767.5px) {
  .commercial_building_wrapper h2 {
    margin-bottom: 3rem;
  }
}
.commercial_building_wrapper h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 3.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.commercial_building_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 3rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
.commercial_building_wrapper .doc_required {
  padding-left: 2rem;
}
.commercial_building_wrapper .doc_required li {
  list-style-type: disc;
}
.commercial_solar_pannels_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .commercial_solar_pannels_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .commercial_solar_pannels_wrapper {
    margin-top: 4rem;
  }
}
.commercial_solar_pannels_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 4.8rem;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .commercial_solar_pannels_wrapper h2 {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767.5px) {
  .commercial_solar_pannels_wrapper h2 {
    margin-bottom: 2rem;
  }
}
.commercial_solar_pannels_wrapper .next {
  position: absolute;
  top: 62%;
  right: 0;
  transform: translateY(-50%);
  z-index: 50;
  border: none;
  outline: 0;
  background-color: transparent;
}
.commercial_solar_pannels_wrapper .next img {
  width: 80%;
}
.commercial_solar_pannels_wrapper .commercial_solar_pannel_slider {
  position: relative;
  width: 86%;
  margin: 0 0 0 auto;
}
.commercial_solar_pannels_wrapper .commercial_solar_pannel_slider::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, #fff 100%);
}
@media screen and (max-width: 1600px) {
  .commercial_solar_pannels_wrapper .commercial_solar_pannel_slider {
    width: 96%;
  }
}
.commercial_solar_pannels_wrapper .commercial_solar_pannel_slider .slick-list {
  padding: 10px 9% 10px 0 !important;
}
.commercial_solar_pannels_wrapper
  .commercial_solar_pannel_slider
  .commercial_solar_pannel_img {
  margin: 0 12px;
}
.our_team_wrapper img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.our_team_wrapper .our_team_content {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .our_team_wrapper .our_team_content {
    top: 45%;
  }
}
.our_team_wrapper .our_team_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
.our_team_wrapper .our_team_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .our_team_wrapper .our_team_content p br {
    display: none;
  }
}
.our_team_wrapper .breadcrumb {
  position: absolute;
  top: 85%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .our_team_wrapper .breadcrumb {
    top: 20%;
  }
}
.our_team_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.our_team_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.about_founder_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .about_founder_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .about_founder_wrapper {
    margin-top: 4rem;
  }
}
.about_founder_wrapper .about_founder {
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.5px) {
  .about_founder_wrapper .about_founder {
    padding: 20px 20px;
    height: 1100px;
  }
}
.about_founder_wrapper .about_founder ul {
  padding-left: 2rem;
  padding-bottom: 2rem;
}
.about_founder_wrapper .about_founder ul li {
  list-style: disc;
}
.about_founder_wrapper .about_founder p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 3rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin: 2.5rem 0 1.5rem;
}
@media screen and (max-width: 767.5px) {
  .about_founder_wrapper .about_founder p {
    margin: 2.5rem 0 2.5rem;
  }
}
@media screen and (max-width: 767.5px) {
  .about_founder_wrapper .about_founder p br {
    display: none;
  }
}
.about_founder_wrapper .about_founder .social_links_wrapp {
  gap: 80px;
}
@media screen and (max-width: 767.5px) {
  .about_founder_wrapper .about_founder .social_links_wrapp {
    gap: 50px;
  }
}
.about_founder_wrapper .about_founder .social_links_wrapp h5 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.2vw, 2.1rem);
  font-weight: 500;
  line-height: 3rem;
  color: #000;
}
.about_founder_wrapper .about_founder .social_links_wrapp span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: rgba(0, 0, 0, 0.6);
}
.about_founder_wrapper .about_founder .founder_img {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: end;
}
.about_founder_wrapper .about_founder .founder_img img {
  width: 90%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767.5px) {
  .about_founder_wrapper .about_founder .founder_img img {
    width: 75%;
  }
}
.team_members_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .team_members_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .team_members_wrapper {
    margin-top: 4rem;
  }
}
.team_members_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 4.8rem;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .team_members_wrapper h2 {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767.5px) {
  .team_members_wrapper h2 {
    margin-bottom: 2rem;
  }
}
.team_members_wrapper .team_member_card {
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  cursor: pointer;
  height: 590px;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .team_members_wrapper .team_member_card {
    height: 570px;
  }
}
@media screen and (max-width: 767.5px) {
  .team_members_wrapper .team_member_card {
    margin-bottom: 2rem;
    height: auto;
  }
}
.team_members_wrapper .team_member_card .team_member_content {
  padding: 1.6rem;
}
.team_members_wrapper .team_member_card .team_member_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin-bottom: 2.2rem;
}
.team_members_wrapper .team_member_card .team_member_content h5 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.2vw, 2.1rem);
  font-weight: 500;
  line-height: 3rem;
  color: #000;
}
.team_members_wrapper .team_member_card .team_member_content span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 3rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
  display: block;
}
.team_members_wrapper .team_member_card .team_member_content .read_more,
.read_more_management {
  font-family: "Exo 2", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 16.89px;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: transparent;
  outline: 0;
  color: #fff;
  border: 1px solid #fff;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  display: block;
}
.team_members_wrapper .team_member_card .our_team_info {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  width: 90%;
}
@media screen and (max-width: 767.5px) {
  .team_members_wrapper .team_member_card .our_team_info {
    position: unset;
  }
}
.team_member_popup_card {
  overflow: hidden;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background-color: #fff;
}
.team_member_popup_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767.5px) {
  .team_member_popup_card p {
    line-height: 2rem;
  }
}
.team_member_popup_card h5 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.2vw, 2.1rem);
  font-weight: 500;
  line-height: 3rem;
  color: #000;
}
.team_member_popup_card span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 3rem;
  color: rgba(0, 0, 0, 0.6);
}
.team_member_popup_content {
  padding: 1.6rem;
}
.swiper-wrapper {
  margin: 4rem 0;
}
.about_us_wrapper .banner_img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  width: 100%;
}
.about_us_wrapper .about_us_content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .about_us_wrapper .about_us_content {
    top: 40%;
  }
}
.about_us_wrapper .about_us_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
.about_us_wrapper .about_us_content h1 span {
  background: linear-gradient(90deg, #00adeb 0, #00a650 100%);
  display: inline-block;
}
.about_us_wrapper .about_us_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.2rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .about_us_wrapper .about_us_content p {
    color: #394658;
  }
}
@media screen and (max-width: 767.5px) {
  .about_us_wrapper .about_us_content p br {
    display: none;
  }
}
.about_us_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .about_us_wrapper .breadcrumb {
    top: 20%;
  }
}
.about_us_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.about_us_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.about_us_toggle {
  border-bottom: 1px solid #d1d1d1;
}
.about_us_toggle .about_us_toggle_content {
  padding: 14px 0;
}
.about_us_toggle .about_us_toggle_content h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4em, 1.2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.9rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #2e2e2e;
}
.about_us_toggle .about_us_toggle_content .toggle_items h3 {
  color: #727d89;
  cursor: pointer;
}
.about_us_toggle .about_us_toggle_content .toggle_items h3 a {
  color: rgba(114, 125, 137, 1);
  text-decoration: none;
}
.about_us_toggle .about_us_toggle_content .toggle_items .active {
  position: relative;
  background: linear-gradient(90deg, #00a650 80.56%, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about_us_toggle .about_us_toggle_content .toggle_items .active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  bottom: -15px;
  left: 0;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
}
.company_profile_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .company_profile_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .company_profile_wrapper {
    margin-top: 4rem;
  }
}
.company_profile_wrapper img {
  border-radius: 12px;
}
.company_profile_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.company_profile_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin-bottom: 2.2rem;
}
/*  */
/* .ece_india_story_wrapper { */
/* position: relative; */
/* margin-top: 9rem; */
/* } */
/* @media screen and (max-width: 1440px) { */
/* .ece_india_story_wrapper { */
/* margin-top: 7rem; */
/* } */
/* } */
/* @media screen and (max-width: 767.5px) { */
/* .ece_india_story_wrapper { */
/* margin-top: 4rem; */
/* } */
/* } */
/* .ece_india_story_wrapper .timeline-slider { */
/* padding: 30px 0; */
/* } */
/* .ece_india_story_wrapper .timeline_content { */
/* display: flex; */
/* flex-direction: column; */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline-nav .slick-list { */
/* padding: 0 0 150px; */
/* } */
/* .timeline-slider .slick-slide { */
/* opacity: 0; */
/* transition: opacity 0.5s; */
/* } */
/*  */
/* .timeline-slider .slick-slide.slick-current { */
/* display: flex; */
/* opacity: 1; */
/* } */
/* .ece_india_story_wrapper .timeline-title { */
/* /~ color: #fff; ~/ */
/* font-family: "Exo 2", sans-serif; */
/* font-size: clamp(2rem, 2vw, 3.2rem); */
/* font-weight: 700; */
/* line-height: 2.8rem; */
/* text-align: left; */
/* background: -webkit-linear-gradient(90deg, #00a650 0, #00adeb 100%); */
/* -webkit-background-clip: text; */
/* -webkit-text-fill-color: transparent; */
/* text-underline-position: from-font; */
/* text-decoration-skip-ink: none; */
/* margin: 2rem 0 2rem; */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline-text { */
/* font-family: "Exo 2", sans-serif; */
/* font-size: clamp(1.6rem, 1.2vw, 2rem); */
/* font-weight: 400; */
/* line-height: 2.5rem; */
/* color: rgba(46, 46, 46, 0.8980392157); */
/* width: 70%; */
/* } */
/* @media screen and (max-width: 991.5px) { */
/* .ece_india_story_wrapper .timeline-text { */
/* width: 100%; */
/* } */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline .slick-current:after { */
/* background-color: rgba(0, 52, 113, 0); */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline .slick-current .timeline-year { */
/* opacity: 1; */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline .slick-current .timeline-slide_content { */
/* opacity: 1; */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline-nav { */
/* position: relative; */
/* display: flex; */
/* justify-content: center; */
/* align-items: center; */
/* width: 100%; */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline-nav::before { */
/* content: ""; */
/* position: absolute; */
/* top: 50%; */
/* left: 0; */
/* width: 100%; */
/* height: 2px; */
/* background: linear-gradient(90deg, #00a650 0%, #00adeb 100%); */
/* z-index: 0; */
/* } */
/* @media screen and (max-width: 767.5px) { */
/* .ece_india_story_wrapper .timeline-nav::before { */
/* top: 15%; */
/* } */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline-nav1 { */
/* position: relative; */
/* z-index: 1; */
/* padding: 0 10px; */
/* cursor: pointer; */
/* color: #afc9f6; */
/* opacity: 0.3; */
/* transition: opacity 0.3s; */
/* } */
/* .ece_india_story_wrapper .timeline-nav1 h3 { */
/* font-family: "Exo 2", sans-serif; */
/* font-size: clamp(1.6rem, 1.2vw, 2rem); */
/* font-weight: 500; */
/* line-height: 2.1rem; */
/* text-align: center; */
/* text-underline-position: from-font; */
/* text-decoration-skip-ink: none; */
/* margin: 2rem 0 1.2rem; */
/* color: #000; */
/* position: absolute; */
/* bottom: -170px; */
/* height: 60px; */
/* } */
/* @media screen and (max-width: 767.5px) { */
/* .ece_india_story_wrapper .timeline-nav1 h3 { */
/* bottom: -117px; */
/* } */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline-nav1.slick-current { */
/* opacity: 1; */
/* } */
/*  */
/* .ece_india_story_wrapper .timeline-nav1 h3::before { */
/* position: absolute; */
/* content: ""; */
/* width: 37px; */
/* height: 37px; */
/* border-radius: 50px; */
/* border: 1px solid #00a650; */
/* top: -68%; */
/* left: 50%; */
/* transform: translateX(-50%); */
/* } */
/* .ece_india_story_wrapper .timeline-nav1 h3::after { */
/* position: absolute; */
/* content: ""; */
/* width: 20px; */
/* height: 20px; */
/* border-radius: 50px; */
/* background: linear-gradient(90deg, #00a650 0%, #00adeb 100%); */
/* top: -56%; */
/* left: 50%; */
/* transform: translateX(-50%); */
/* } */
/*  */
/* /~ .timeline-nav1.slick-current::before { */
/* background-color: #ff9900; */
/* } ~/ */
/*  */
/* .ece_india_story_wrapper .custom-prev, */
/* .ece_india_story_wrapper .custom-next { */
/* position: absolute; */
/* top: 50%; */
/* transform: translateY(-50%); */
/* background: transparent; */
/* border: none; */
/* cursor: pointer; */
/* z-index: 10; */
/* } */
/*  */
/* .ece_india_story_wrapper .custom-prev { */
/* left: -60px; */
/* top: 30px; */
/* } */
/* @media screen and (max-width: 767.5px) { */
/* .custom-prev { */
/* left: -20px; */
/* top: -15px; */
/* } */
/* } */
/*  */
/* .ece_india_story_wrapper .custom-next { */
/* right: -30px; */
/* top: 30px; */
/* } */
/* @media screen and (max-width: 991.5px) { */
/* .ece_india_story_wrapper .custom-next { */
/* right: -20px; */
/* top: -15px; */
/* } */
/* } */
/*  */
/* .ece_india_story_wrapper .custom-prev img, */
/* .ece_india_story_wrapper .custom-next img { */
/* width: 80px; */
/* height: auto; */
/* transition: opacity 0.3s ease; */
/* } */
/* @media screen and (max-width: 991.5px) { */
/* .ece_india_story_wrapper .custom-prev img, */
/* .ece_india_story_wrapper .custom-next img { */
/* width: 60px; */
/* } */
/* } */
/*  */
/* .ece_india_story_wrapper .custom-prev:hover img, */
/* .ece_india_story_wrapper .custom-next:hover img { */
/* opacity: 0.7; */
/* } */
/* .ece_india_story_wrapper .custom-prev.disabled, */
/* .ece_india_story_wrapper .custom-next.disabled { */
/* opacity: 0.5; */
/* pointer-events: none; */
/* } */
/*  */
/* .ece_india_story_wrapper h2 { */
/* font-family: "Exo 2", sans-serif; */
/* font-size: clamp(2rem, 2vw, 3.2rem); */
/* font-weight: 600; */
/* line-height: 5.1rem; */
/* text-align: center; */
/* text-underline-position: from-font; */
/* text-decoration-skip-ink: none; */
/* margin-bottom: 1.6rem; */
/* } */
/* &ece story */
.ece_india_story_wrapper {
  position: relative;
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .ece_india_story_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .ece_india_story_wrapper {
    margin-top: 4rem;
  }
}
.ece_india_story_wrapper .timeline-slider {
  padding: 30px 0;
}
.ece_india_story_wrapper .timeline_content {
  display: flex;
  flex-direction: column;
}

.ece_india_story_wrapper .timeline-nav .slick-list {
  padding: 110px 0 390px;
}
@media screen and (max-width: 1600px) {
  .ece_india_story_wrapper .timeline-nav .slick-list {
    padding: 80px 0 350px;
  }
}
@media screen and (max-width: 767.5px) {
  .ece_india_story_wrapper .timeline-nav .slick-list {
    padding: 120px 0 400px;
  }
}
.timeline-slider .slick-slide {
  /* opacity: 0; */
  transition: opacity 0.5s;
}

.timeline-slider .slick-slide.slick-current {
  display: flex;
  opacity: 1;
}
.ece_india_story_wrapper .timeline-title {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 700;
  line-height: 2.8rem;
  text-align: left;
  background: -webkit-linear-gradient(90deg, #00a650 0, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 2rem 0 2rem;
}

.ece_india_story_wrapper .timeline-text {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  width: 70%;
}
@media screen and (max-width: 991.5px) {
  .ece_india_story_wrapper .timeline-text {
    width: 100%;
  }
}

.ece_india_story_wrapper .timeline .slick-current:after {
  background-color: rgba(0, 52, 113, 0);
}

.ece_india_story_wrapper .timeline .slick-current .timeline-year {
  opacity: 1;
}

.ece_india_story_wrapper .timeline .slick-current .timeline-slide_content {
  opacity: 1;
}

.ece_india_story_wrapper .timeline-nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ece_india_story_wrapper .timeline-nav::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00a650 0%, #00adeb 100%);
  z-index: 0;
}
@media screen and (max-width: 767.5px) {
  .ece_india_story_wrapper .timeline-nav::before {
    top: 47%;
  }
}

.ece_india_story_wrapper .timeline-nav1 {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  cursor: pointer;
}
.ece_india_story_wrapper .timeline-nav1 .timeline_card {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.1rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;
  position: absolute;
  top: 170px;
  max-height: 60px;
  transition: 0.5s;
  width: 95%;
  padding: 10px;
}
@media screen and (max-width: 767.5px) {
  .ece_india_story_wrapper .timeline-nav1 .timeline_card {
    background-color: #00adeb;
  }
}
.ece_india_story_wrapper .timeline-nav1 .timeline_card2 {
  font-family: "Exo 2", sans-serif;
  padding: 10px;

  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.1rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;
  position: absolute;
  bottom: -85px;
  max-height: 60px;
  transition: 0.5s;
  width: 95%;
  border-radius: 12px;
}
@media screen and (max-width: 767.5px) {
  .ece_india_story_wrapper .timeline-nav1 .timeline_card2 {
    background-color: #00a650;
  }
}
.ece_india_story_wrapper .timeline-nav1 p {
  opacity: 0;
  transition: 0.3s;
  display: none;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1rem, 1vw, 2rem);
  font-weight: 400;
  line-height: 2rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
@media screen and (max-width: 767.5px) {
  .ece_india_story_wrapper .timeline-nav1 p {
    line-height: 1.5rem;
  }
}
.ece_india_story_wrapper .timeline_card {
  border-radius: 12px;
  transition: max-height 0.5s ease-in-out;
}
.hover-effect {
  box-shadow: 0px 6px 10px #666;
  /* background: linear-gradient(90deg, #00a650 0, #00adeb 100%); */
  background-color: #00adeb;
  transition: 0.3s;
  max-height: 150px;
  z-index: 2;
}
.hover-effect2 {
  box-shadow: 0px 6px 10px #666;
  /* background: linear-gradient(90deg, #00a650 0, #00adeb 100%); */
  background-color: #00a650;
  transition: 0.3s;
  max-height: 150px;
  z-index: 2;
}

.ece_india_story_wrapper .radiobtn:hover p {
  opacity: 1;
  transition: 0.3s;
  display: block;

  color: #fff;
}
.ece_india_story_wrapper .timeline-nav1 h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.1rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 5px;
}
/* @media screen and (max-width: 767.5px) { */
/* .ece_india_story_wrapper .timeline-nav1 .timeline_card { */
/* bottom: -117px; */
/* } */
/* } */

.ece_india_story_wrapper .timeline-nav1.slick-current {
  opacity: 1;
}

.radiobtn {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00a650 0%, #00adeb 100%);
  bottom: -135px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.radiobtn::before {
  content: "";
  width: 37px;
  height: 37px;
  border-radius: 50px;
  border: 1px solid #00a650;
  top: -45%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  /* transform: translateX(-50%); */
}
.line1::after {
  content: "";
  width: 2px;
  height: 35px;
  background: linear-gradient(90deg, #00a650 0%, #00adeb 100%);
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  /* transform: translateX(-50%); */
}
.line2::after {
  content: "";
  width: 2px;
  height: 35px;
  background: linear-gradient(90deg, #00a650 0%, #00adeb 100%);
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  /* transform: translateX(-50%); */
}

.ece_india_story_wrapper .slick-next:before,
.slick-prev:before {
  color: transparent !important;
}

.ece_india_story_wrapper .custom-prev,
.ece_india_story_wrapper .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.ece_india_story_wrapper .custom-prev {
  left: -60px;
  top: 190px;
}
@media screen and (max-width: 1600px) {
  .ece_india_story_wrapper .custom-prev {
    top: 160px;
  }
}
@media screen and (max-width: 767.5px) {
  .ece_india_story_wrapper .custom-prev {
    left: -20px;
    /* top: 165px; */
    top: 202px;
  }
}

.ece_india_story_wrapper .custom-next {
  right: -30px;
  top: 190px;
}
@media screen and (max-width: 1600px) {
  .ece_india_story_wrapper .custom-next {
    top: 160px;
  }
}
@media screen and (max-width: 767.5px) {
  .ece_india_story_wrapper .custom-next {
    right: -10px;
    /* top: 165px; */
    top: 202px;
  }
}

.ece_india_story_wrapper .custom-prev img,
.ece_india_story_wrapper .custom-next img {
  width: 80px;
  height: auto;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 991.5px) {
  .ece_india_story_wrapper .custom-prev img,
  .ece_india_story_wrapper .custom-next img {
    width: 65px;
  }
}

/* .ece_india_story_wrapper .custom-prev:hover img, */
/* .ece_india_story_wrapper .custom-next:hover img { */
/* opacity: 0.7; */
/* } */
.ece_india_story_wrapper .custom-prev.disabled,
.ece_india_story_wrapper .custom-next.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ece_india_story_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  /* margin-bottom: 1.6rem; */
}
/* &ece story */

/* .vision_mission_wrapper { */
/* margin-top: 9rem; */
/* } */
/* @media screen and (max-width: 1440px) { */
/* .vision_mission_wrapper { */
/* margin-top: 7rem; */
/* } */
/* } */
/* @media screen and (max-width: 767.5px) { */
/* .vision_mission_wrapper { */
/* margin-top: 4rem; */
/* } */
/* } */
.vision_mission_wrapper .vision_mission_img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.vision_mission_wrapper .vision_mission_img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.vision_mission_wrapper #mission {
  transform: translateY(60px);
}
@media screen and (max-width: 1400px) {
  .vision_mission_wrapper #mission {
    transform: translateY(60px);
  }
}
@media screen and (max-width: 767.5px) {
  .vision_mission_wrapper #mission {
    transform: translateY(0);
  }
}
.vision_mission_wrapper #mission:hover {
  transform: translateY(0);
  transition: 0.5s;
}
.vision_mission_wrapper .vision_mission_content {
  padding: 24px 24px 15px;
  position: absolute;
  bottom: 0;
  transform: translateY(60px);
  transition: 0.5s;
}
@media screen and (max-width: 1366px) {
  .vision_mission_wrapper .vision_mission_content {
    transform: translateY(60px);
  }
}
@media screen and (max-width: 767.5px) {
  .vision_mission_wrapper .vision_mission_content {
    transform: translateY(0);
    padding: 15px 15px 15px;
  }
}
.vision_mission_wrapper .vision_mission_content:hover {
  transform: translateY(0);
  transition: 0.5s;
}
.vision_mission_wrapper .vision_mission_content:hover h3 {
  font-size: clamp(2rem, 1.8vw, 3.2rem);
  transition: 0.5s;
}
.vision_mission_wrapper .vision_mission_content:hover .vsn_msn {
  width: 15%;
  transition: 0.5s;
}
.vision_mission_wrapper .vision_mission_content .vsn_msn {
  transition: 0.5s;
  width: 20%;
}
@media screen and (max-width: 767.5px) {
  .vision_mission_wrapper .vision_mission_content .vsn_msn {
    width: 10%;
  }
}
.vision_mission_wrapper .vision_mission_content h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2.6vw, 4.2rem);
  font-weight: 500;
  line-height: 3rem;
  color: #fff;
  margin: 16px 0 20px;
  transition: 0.5s;
}
@media screen and (max-width: 767.5px) {
  .vision_mission_wrapper .vision_mission_content h3 {
    margin: 5px 0 5px;
    line-height: 2rem;
  }
}
.vision_mission_wrapper .vision_mission_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: #fff;
}
@media screen and (max-width: 767.5px) {
  .vision_mission_wrapper .vision_mission_content p {
    line-height: 2.2rem;
  }
}
.our_values_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .our_values_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .our_values_wrapper {
    margin-top: 4rem;
  }
}
.our_values_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
  text-align: center;
}
.our_values_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin: 2.4rem 0 6.4rem;
}
.our_values_wrapper .our_values_card {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 1.6rem;
  /* height: 300px; */
  transition: 0.5s;
  /* cursor: pointer; */
}
.our_values_wrapper .our_values_card img {
  width: 15%;
}
.our_values_wrapper .our_values_card:hover {
  transform: scale(1.02);
  transition: 0.5s;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 38%);
}
@media screen and (max-width: 991.5px) {
  .our_values_wrapper .our_values_card:hover {
    transform: scale(1);
    box-shadow: unset;
  }
}
/* @media screen and (max-width: 1440.5px) { */
/* .our_values_wrapper .our_values_card { */
/* height: 280px; */
/* } */
/* } */
@media screen and (max-width: 991.5px) {
  .our_values_wrapper .our_values_card {
    height: auto;
  }
}
.our_values_wrapper .our_values_card h5 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.2vw, 2.4rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin: 1.6rem 0 1.2rem;
}
.our_values_wrapper .our_values_card p {
  margin: 0;
}
.our_infrastructure_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .our_infrastructure_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .our_infrastructure_wrapper {
    margin-top: 4rem;
  }
}
.our_infrastructure_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.our_infrastructure_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
.our_infrastructure_wrapper ul {
  padding-left: 2rem;
}
.our_infrastructure_wrapper ul li {
  list-style-type: disc;
}
.our_infrastructure_wrapper img {
  border-radius: 12px;
}

/* &award */
.awards_recognitions_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .awards_recognitions_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .awards_recognitions_wrapper {
    margin-top: 4rem;
  }
}
.awards_recognitions_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.awards_recognitions_wrapper h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  font-weight: 700;
  line-height: 3rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 2rem;
  transition: 0.5s;
}
.awards_recognitions_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  transition: 0.5s;
}
.awards_recognitions_wrapper .grey_bg {
  background: #f3f3f3;
  padding: 10rem 12rem;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767.5px) {
  .awards_recognitions_wrapper .grey_bg {
    padding: 2rem;
    height: auto;
  }
}
.awards_recognitions_wrapper .toggle-arrows {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.5px) {
  .awards_recognitions_wrapper .toggle-arrows {
    position: unset;
    transform: unset;
  }
}
.awards_recognitions_wrapper .toggle-arrows button {
  background: transparent;
  border: none;
  outline: none;
}
.awards_recognitions_img {
  position: absolute;
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767.5px) {
  .awards_recognitions_img {
    position: unset;
    transform: unset;
  }
}
.awards_recognitions_img img {
  transition: 0.5s;
}
.about_powering_feature_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .about_powering_feature_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .about_powering_feature_wrapper {
    margin-top: 4rem;
  }
}
.about_powering_feature_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.about_powering_feature_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
.about_powering_feature_wrapper img {
  border-radius: 12px;
}
.why_solar_wrapper img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.why_solar_wrapper .why_solar_content {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .why_solar_wrapper .why_solar_content {
    top: 58%;
  }
}
.why_solar_wrapper .why_solar_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
@media screen and (max-width: 767.5px) {
  .why_solar_wrapper .why_solar_content h1 {
    text-align: center;
  }
}
.why_solar_wrapper .why_solar_content h1 span {
  background: linear-gradient(90deg, #00adeb 0, #00a650 100%);
  display: inline-block;
}
.why_solar_wrapper .why_solar_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.2rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .why_solar_wrapper .why_solar_content p {
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .why_solar_wrapper .why_solar_content p br {
    display: none;
  }
}
.why_solar_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .why_solar_wrapper .breadcrumb {
    top: 20%;
  }
}
.why_solar_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.why_solar_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.solar_features_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .solar_features_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .solar_features_wrapper {
    margin-top: 4rem;
  }
}
.solar_features_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: 600;
  line-height: 3.8rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 4rem;
}
.solar_features_wrapper .feature_card {
  margin-bottom: 4rem;
  height: 300px;
  transition: 0.5s;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 6rem 10px 0;
}
@media screen and (max-width: 767.5px) {
  .solar_features_wrapper .feature_card {
    margin-bottom: 2rem;
    padding: 6rem 10px 0;
  }
}
.solar_features_wrapper .solar_card_img {
  transition: 0.5s;
}
.solar_features_wrapper .solar_card_img:hover {
  transform: scale(1.05);
  transition: 0.5s;
}
/* .solar_features_wrapper .feature_card img { */
/* width: 12%; */
/* } */
.solar_features_wrapper .feature_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.6rem, 1.2vw, 3.5rem);
  font-weight: 700;
  line-height: 2.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 2rem 0 1.2rem;
  text-align: center;
}
.solar_features_wrapper .feature_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  text-align: center;
}
.feature_img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);

  left: 0;
  transition: 0.5s;
  text-align: center;
  display: flex;
}
.feature_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px 0 0 15px;
}
.solar_features_wrapper .feature_card:hover .feature_img {
  height: 60px;
  transition: 0.5s;
}
.ftr_img {
  width: 40%;
  margin: 0 auto;
  transition: 0.5s;
}
.solar_features_wrapper .feature_card:hover .ftr_img {
  width: 12%;
  transition: 0.5s;
}

/*  */
.claculator_modal .modal-dialog {
  max-width: 1000px !important;
}
.claculator_modal .modal-dialog .btn-close {
  position: absolute;
  right: 0;
  font-size: 1.4rem;
}
.claculator_modal .modal-dialog .modal-content {
  padding: 2rem;
  border-radius: 24px !important;
}
@media screen and (max-width: 767.5px) {
  .claculator_modal .modal-dialog .modal-content {
    /* height: 600px; */
    /* overflow-y: scroll; */
    margin-top: 10rem;
  }
}
.claculator_modal .modal-dialog .modal-content h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: 600;
  line-height: 3.8rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.claculator_modal .modal-dialog .modal-content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
/* .claculator_modal .modal-dialog .modal-content .solar_calculator_toggle { */
/* margin-bottom: 3.2rem; */
/* } */
.claculator_modal .modal-dialog .modal-content .solar_calculator_toggle span {
  cursor: pointer;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #cbcbcb;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_toggle
  .active {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  color: #fff;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  .form-control,
.claculator_modal .modal-dialog .modal-content .solar_calculator_form select {
  padding: 10px;
  border-radius: 8px;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:checked,
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:checked
  + label,
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:not(:checked)
  + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:checked
  + label:before,
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:not(:checked)
  + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #00a650;
  border-radius: 100%;
  background: #fff;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:checked
  + label:after,
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:not(:checked)
  + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, #00a650 0%, #00adeb 100%);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:not(:checked)
  + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  [type="radio"]:checked
  + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  .form-control,
.claculator_modal .modal-dialog .modal-content .solar_calculator_form select {
  padding: 10px;
  border-radius: 8px;
}
.claculator_modal .modal-dialog .modal-content .solar_calculator_form input,
.claculator_modal .modal-dialog .modal-content .solar_calculator_form label {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 500;
  line-height: 2rem;
  color: rgb(46, 46, 46);
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  input::-webkit-inner-spin-button,
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  input[type="number"] {
  -moz-appearance: textfield;
}
.claculator_modal .modal-dialog .modal-content .solar_calculator_form select {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 500;
  line-height: 2rem;
  color: #2e2e2e;
  border: 1px solid #b4b4b4 !important;
  outline: 0;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  .form-control:focus {
  background-color: #fff;
  border-color: unset !important;
  outline: unset !important;
  box-shadow: unset !important;
  border: 1px solid #b4b4b4 !important;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .solar_calculator_form
  .calculate_btn {
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  /* position: absolute; */
  /* right: 0; */
  /* bottom: 12px; */
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: #fff;
  border: none;
  outline: 0;
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 767.5px) {
  .claculator_modal
    .modal-dialog
    .modal-content
    .solar_calculator_form
    .calculate_btn {
    width: 100%;
    position: unset;
  }
}
.claculator_modal
  .modal-dialog
  .modal-content
  .estimate_wrapper
  .estimate_card {
  border: 1px solid #b4b4b4;
  border-radius: 16px;
  padding: 2rem;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .estimate_wrapper
  .estimate_card
  h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 700;
  line-height: 2.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 2rem;
}
.claculator_modal
  .modal-dialog
  .modal-content
  .estimate_wrapper
  .estimate_card
  span {
  color: #00adeb;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.3rem, 1.2vw, 4rem);
  font-weight: 600;
  line-height: 2.1rem;
}
.claculator_modal .modal-dialog .modal-content .estimate_wrapper .dlwd_report {
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: #fff;
  border: none;
  outline: 0;
  width: 50%;
  margin: 0 auto;
  display: block;
  margin-top: 2rem;
}
@media screen and (max-width: 767.5px) {
  .claculator_modal
    .modal-dialog
    .modal-content
    .estimate_wrapper
    .dlwd_report {
    width: 100%;
  }
}

.claculator_modal .modal-dialog .modal-content .estimate_wrapper .reng_img {
  width: 100%;
  background: #e6e6e6;
  border-radius: 9px;
}
.blog_wrapper img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.blog_wrapper .blog_content {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .blog_wrapper .blog_content {
    /* top: 58%; */
    top: 58%;
  }
}
@media screen and (max-width: 767.5px) {
  .blog_wrapper #blog_content_media {
    /* top: 58%; */
    top: 34%;
  }
}
.blog_wrapper .blog_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
@media screen and (max-width: 767.5px) {
  .blog_wrapper .blog_content h1 {
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .blog_wrapper .blog_content h1 br {
    display: none;
  }
}
.blog_wrapper .blog_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .blog_wrapper .blog_content p {
    margin: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .blog_wrapper .blog_content p br {
    display: none;
  }
}
.blog_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .blog_wrapper .breadcrumb {
    top: 15%;
  }
}
.blog_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.blog_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.blog_wrapper .slick-dots {
  bottom: 40px !important;
}
.blog_wrapper .slick-dots li {
  border-radius: 50px;
  border: 1px solid #cfcfcf;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}
.blog_wrapper .slick-dots .slick-active {
  background: #fff;
}
.blog_wrapper .slick-dots li button:before {
  color: #000 !important;
}
.all_blogs_wrapper .view_more {
  color: #01a753;
  border: 1.3px solid #01a753;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 1.6rem 5rem;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  margin: 0 auto;
  display: block;
  margin-top: 3rem;
}
.all_blogs_wrapper .view_more:hover {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  color: #fff;
  transition: 0.3s;
}
.all_blogs_wrapper .view_more:hover .hover-svg path {
  stroke: #fff;
  transition: 0.3s;
}

.all_blogs_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .all_blogs_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .all_blogs_wrapper {
    margin-top: 4rem;
  }
}
.all_blogs_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
  text-align: center;
  margin-bottom: 6rem;
}
.all_blogs_wrapper .blog_card {
  width: 80%;
}
.all_blogs_wrapper .blog_card img {
  border-radius: 12px;
}
@media screen and (max-width: 767.5px) {
  .all_blogs_wrapper .blog_card {
    width: 100%;
  }
}
.all_blogs_wrapper .blog_card span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.4em;
  color: #6c757d;
  margin-top: 1.5rem;
  display: block;
}
.all_blogs_wrapper .blog_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.2vw, 2.8rem);
  font-weight: 500;
  line-height: 2.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 1.6rem 0 1.2rem;
  color: #000;
  position: relative;
}
/* .all_blogs_wrapper .blog_card h3:after { */
/* position: absolute; */
/* content: ""; */
/* height: 2px; */
/* width: 50%; */
/* background-color: #000; */
/* bottom: -5px; */
/* left: 0; */
/* } */
.all_blogs_wrapper .blog_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
.all_blogs_wrapper .blog_img {
  border-radius: 12px;
}
.all_blogs_wrapper .blog_card .know_more {
  color: #01a753;
  border: 1.3px solid #01a753;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  background-color: #fff;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 0.8rem 5rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 4rem;
  transition: 0.3s;
}
.all_blogs_wrapper .blog_card .know_more:hover {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  color: #fff;
  transition: 0.3s;
}
.all_blogs_wrapper .blog_card .know_more:hover .hover-svg path {
  stroke: #fff;
  transition: 0.3s;
}
.all_blogs_wrapper .blog {
  display: none;
}
.all_blogs_wrapper .show {
  display: inline-flex;
}
.all_blogs_wrapper .show_more_btn {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  padding: 1.3rem 2.7rem;
  border-radius: 7px;
  color: #fff;
  border: none;
  outline: none;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 1.8rem);
}
.blog_wrapp2 {
  margin-top: 9rem;
  border-radius: 24px;
}
@media screen and (max-width: 1440px) {
  .blog_wrapp2 {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .blog_wrapp2 {
    margin-top: 4rem;
  }
}
.blog_preview_wrapper img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.blog_preview_wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #000000b8;
  width: 100%;
}
.blog_preview_wrapper .blog_preview_content {
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 2;
  width: 70%;
}
@media screen and (max-width: 767.5px) {
  .blog_preview_wrapper .blog_preview_content {
    top: 58%;
    width: 100%;
  }
}
.blog_preview_wrapper .blog_preview_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
@media screen and (max-width: 767.5px) {
  .blog_preview_wrapper .blog_preview_content h1 {
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .blog_preview_wrapper .blog_preview_content h1 br {
    display: none;
  }
}
.blog_preview_wrapper .blog_preview_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .blog_preview_wrapper .blog_preview_content p {
    margin: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .blog_preview_wrapper .blog_preview_content p br {
    display: none;
  }
}
.blog_preview_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
/* @media screen and (max-width: 767.5px) {
  .blog_preview_wrapper .breadcrumb {
    top: 15%;
  }
} */
.blog_preview_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.blog_preview_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.blog_preview_description_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .blog_preview_description_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .blog_preview_description_wrapper {
    margin-top: 4rem;
  }
}
.blog_preview_description_wrapper h5 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 700;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
.blog_preview_description_wrapper span {
  color: #c4c4c4;
}
.blog_preview_description_wrapper h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 600;
  line-height: 2.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 2.4rem;
}
.blog_preview_description_wrapper h2 {
  margin-bottom: 2.4rem;
}
.blog_preview_description_wrapper ul {
  margin-left: 2rem;
}
.blog_preview_description_wrapper ul li {
  list-style-type: disc;
}
.blog_preview_description_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  margin-bottom: 3.2rem;
}
.career_wrapper img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.career_wrapper .career_content {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767.5px) {
  .career_wrapper .career_content {
    top: 58%;
  }
}
.career_wrapper .career_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
@media screen and (max-width: 767.5px) {
  .career_wrapper .career_content h1 {
    text-align: center;
  }
}
.career_wrapper .career_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.4vw, 2rem);
  font-weight: 500;
  line-height: 2.6rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .career_wrapper .career_content p {
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .career_wrapper .career_content p br {
    display: none;
  }
}
.career_wrapper .career_content .positons {
  background: linear-gradient(90deg, #00adeb 0, #00a650 100%);
  padding: 1.6rem 3.3rem;
  font-size: 1.6rem;
  border-radius: 7px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  margin-top: 4.8rem;
  display: block;
  width: fit-content;
}
@media screen and (max-width: 767.5px) {
  .career_wrapper .career_content .positons {
    margin: 0 auto;
  }
}
.career_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767.5px) {
  .career_wrapper .breadcrumb {
    top: 25%;
  }
}
.career_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.career_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.ece_family_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .ece_family_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .ece_family_wrapper {
    margin-top: 4rem;
  }
}
.ece_family_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
  text-align: center;
}
.ece_family_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  text-align: center;
  font-weight: 500;
  line-height: 3.2rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #424242;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .ece_family_wrapper p {
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .ece_family_wrapper p br {
    display: none;
  }
}
@media screen and (max-width: 767.5px) {
  .ece_family_wrapper .ece_family_card_content .ece_family_card {
    text-align: center;
  }
}
.ece_family_wrapper .ece_family_card_content .ece_family_card img {
  width: 15%;
}
.ece_family_wrapper .ece_family_card_content .ece_family_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 600;
  line-height: 2.1rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 2.4rem 0 1.6rem;
}
.ece_family_wrapper .ece_family_card_content .ece_family_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  text-align: start;
}
@media screen and (max-width: 767.5px) {
  .ece_family_wrapper .ece_family_card_content .ece_family_card p {
    text-align: center;
  }
}
.team_goal_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .team_goal_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .team_goal_wrapper {
    margin-top: 4rem;
  }
}
.team_goal_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 3.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.team_goal_wrapper ul {
  padding-left: 2rem;
}
.team_goal_wrapper ul li {
  list-style-type: disc;
}
.team_goal_wrapper ul li p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 3.2rem;
  color: rgba(46, 46, 46, 0.8980392157);
  text-align: start;
}
.career_opportunity_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .career_opportunity_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .career_opportunity_wrapper {
    margin-top: 4rem;
  }
}
.career_opportunity_wrapper .career_opportunities_card {
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.0705882353);
  border-radius: 16px;
  padding: 2rem;
}
@media screen and (max-width: 767.5px) {
  .career_opportunity_wrapper .career_opportunities_card {
    box-shadow: unset;
    padding: unset;
  }
}
.career_opportunity_wrapper .career_opportunities_card h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  font-weight: 600;
  line-height: 3.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.career_opportunity_wrapper
  .career_opportunities_card
  .career_dropdowns_wrapper {
  margin-bottom: 7rem;
}
.career_opportunity_wrapper
  .career_opportunities_card
  .career_dropdowns_wrapper
  select {
  width: 100%;
  border: 1px solid #b4b4b4;
  outline: 0;
  padding: 10px;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  border-radius: 8px;
}
.career_opportunity_wrapper
  .career_opportunities_card
  .career_dropdowns_wrapper
  select
  option {
  color: #2e2e2e;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
.career_opportunity_wrapper
  .career_opportunities_card
  .career_dropdowns_wrapper
  .all_job_types,
.career_opportunity_wrapper
  .career_opportunities_card
  .career_dropdowns_wrapper
  .departments,
.career_opportunity_wrapper
  .career_opportunities_card
  .career_dropdowns_wrapper
  .locations {
  width: 50%;
}
@media screen and (max-width: 767.5px) {
  .career_opportunity_wrapper
    .career_opportunities_card
    .career_dropdowns_wrapper
    .all_job_types,
  .career_opportunity_wrapper
    .career_opportunities_card
    .career_dropdowns_wrapper
    .departments,
  .career_opportunity_wrapper
    .career_opportunities_card
    .career_dropdowns_wrapper
    .locations {
    width: 100%;
  }
}
.career_opportunity_wrapper
  .career_opportunities_card
  .career_dropdowns_wrapper
  .searchbtn {
  padding: 8px 75px;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  border-radius: 8px;
  border: none;
  outline: 0;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 3.2rem;
  color: #fff;
}
@media screen and (max-width: 767.5px) {
  .career_opportunity_wrapper
    .career_opportunities_card
    .career_dropdowns_wrapper
    .searchbtn {
    width: 100%;
  }
}
.career_opportunity_wrapper
  .career_opportunities_card
  .career_dropdowns_wrapper
  span {
  color: #424242;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  position: absolute;
  bottom: -3rem;
  left: 0;
}
.career_opportunity_wrapper .career_opportunities_card .all_positons_card {
  border-bottom: 1px solid #d2d2d2;
  padding: 3rem 2rem;
}
@media screen and (max-width: 767.5px) {
  .career_opportunity_wrapper .career_opportunities_card .all_positons_card {
    padding: 2rem 1rem;
  }
}
.career_opportunity_wrapper .career_opportunities_card .all_positons_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 600;
  line-height: 3.2rem;
  color: #424242;
  text-align: start;
}
.career_opportunity_wrapper
  .career_opportunities_card
  .all_positons_card
  h3
  .disc_bullet {
  position: relative;
}
.career_opportunity_wrapper
  .career_opportunities_card
  .all_positons_card
  h3
  .disc_bullet::before {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background-color: #d9d9d9;
  border-radius: 50px;
}
@media screen and (max-width: 767.5px) {
  .career_opportunity_wrapper .career_opportunities_card .all_positons_card h3 {
    color: #556477;
    font-weight: 400;
  }
}
.career_opportunity_wrapper .career_opportunities_card .all_positons_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: #424242;
}
.career_opportunity_wrapper
  .career_opportunities_card
  .all_positons_card
  .know_more {
  color: #01a753;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  border: none;
  outline: 0;
  background: 0 0;
  transition: 0.3s;
  padding: 10px 20px;
  border-radius: 8px;
}
.career_opportunity_wrapper
  .career_opportunities_card
  .all_positons_card
  .know_more:hover {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  color: #fff;
  transition: 0.3s;
}
.career_opportunity_wrapper
  .career_opportunities_card
  .all_positons_card
  .know_more:hover
  .hover-svg
  path {
  stroke: #fff;
  transition: 0.3s;
}
.career_opportunity_modal .modal-content {
  padding: 2rem;
  border-radius: 24px;
}
.career_opportunity_modal .modal-content .btn-close {
  position: absolute;
  right: 0;
  font-size: 1.4rem;
}
.career_opportunity_modal h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.2vw, 2.4rem);
  font-weight: 600;
  line-height: 3.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.career_opportunity_modal p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  text-align: start;
}
.career_opportunity_modal .job_details_wrapper .location {
  margin-top: 2rem;
}
.career_opportunity_modal .job_details_wrapper .experience {
  margin-top: 2rem;
}
.career_opportunity_modal .job_details_wrapper .requirement {
  margin-top: 2rem;
}
.career_opportunity_modal .job_details_wrapper .requirement ul {
  margin-left: 2rem;
}
.career_opportunity_modal .job_details_wrapper .requirement ul li {
  list-style-type: disc;
}
.career_opportunity_modal .job_details_wrapper .perks {
  margin-top: 2rem;
}
.career_opportunity_modal .job_details_wrapper .apply_now {
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: #fff;
  border: none;
  outline: 0;
  width: 47%;
  display: block;
  margin: 2rem 0 0 auto;
}
@media screen and (max-width: 767.5px) {
  .career_opportunity_modal .job_details_wrapper .apply_now {
    width: 100%;
    position: unset;
  }
}
.career_opportunity_modal .solar_calculator_form .form-control,
.career_opportunity_modal .solar_calculator_form select {
  padding: 10px;
  border-radius: 8px;
}
.career_opportunity_modal .solar_calculator_form input,
.career_opportunity_modal .solar_calculator_form label {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 500;
  line-height: 2rem;
  color: #2e2e2e;
}
.career_opportunity_modal
  .solar_calculator_form
  input::-webkit-inner-spin-button,
.career_opportunity_modal
  .solar_calculator_form
  input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.application_form_wrapper {
  padding-bottom: 4rem;
}
@media screen and (max-width: 767.5px) {
  .application_form_wrapper {
    padding-bottom: unset;
  }
}
.career_opportunity_modal .solar_calculator_form input[type="number"] {
  -moz-appearance: textfield;
}
.career_opportunity_modal .solar_calculator_form select {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 500;
  line-height: 2rem;
  color: rgba(46, 46, 46, 0.5019607843);
  border: 1px solid #b4b4b4 !important;
  outline: 0;
}
.career_opportunity_modal .solar_calculator_form .form-control:focus {
  background-color: #fff;
  border-color: unset !important;
  outline: unset !important;
  box-shadow: unset !important;
  border: 1px solid #b4b4b4 !important;
}
.career_opportunity_modal .solar_calculator_form input::file-selector-button {
  border: 1px solid #00a650;
  color: #00a650;
  padding: 5px 10px 5px 20px;
  border: thin solid #00a650;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.career_opportunity_modal .solar_calculator_form .attachment_img {
  position: absolute;
  top: 58%;
  left: 5px;
}
.career_opportunity_modal .solar_calculator_form .calculate_btn {
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  position: absolute;
  right: 0;
  bottom: -50px;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: #fff;
  border: none;
  outline: 0;
  width: 47%;
}
@media screen and (max-width: 767.5px) {
  .career_opportunity_modal .solar_calculator_form .calculate_btn {
    width: 100%;
    position: unset;
  }
}
.solar_calculator_form .error {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 2rem;
  color: red;
  display: block;
}
.errbx {
  position: absolute;
  bottom: -15px;
}
.contact_us_wrapper img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.contact_us_wrapper .contact_us_content {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .contact_us_wrapper .contact_us_content {
    top: 38%;
    width: 100%;
  }
}
.contact_us_wrapper .contact_us_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: start;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
@media screen and (max-width: 767.5px) {
  .contact_us_wrapper .contact_us_content h1 {
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .contact_us_wrapper .contact_us_content h1 br {
    display: none;
  }
}
.contact_us_wrapper .contact_us_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.2rem;
  text-align: start;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .contact_us_wrapper .contact_us_content p {
    margin: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .contact_us_wrapper .contact_us_content p br {
    display: none;
  }
}
.contact_us_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .contact_us_wrapper .breadcrumb {
    top: 15%;
  }
}
.contact_us_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.contact_us_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.contact_user_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .contact_user_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .contact_user_wrapper {
    margin-top: 4rem;
  }
}
.contact_user_wrapper .hello_img {
  width: 3%;
}
@media screen and (max-width: 767.5px) {
  .contact_user_wrapper .hello_img {
    width: 10%;
  }
}
.contact_user_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #728196;
}
.contact_user_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3.2rem, 2vw, 4.4rem);
  font-weight: 600;
  line-height: 3.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.contact_user_wrapper .contact_form_warpper {
  padding: 3.2rem;
  background: #f9f9f9;
  border-radius: 16px;
}
.contact_user_wrapper .contact_form_warpper .error {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 2rem;
  color: red;
  display: block;
}
@media screen and (max-width: 767.5px) {
  .contact_user_wrapper .contact_form_warpper {
    padding: 2.2rem;
  }
}
.contact_user_wrapper .contact_form_warpper .input_wrap {
  margin-bottom: 3.2rem;
}
.contact_user_wrapper .contact_form_warpper label {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 600;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #394658;
}
.contact_user_wrapper .contact_form_warpper input,
.contact_user_wrapper .contact_form_warpper textarea {
  padding: 1rem 1.4rem;
  border-radius: 1.2rem;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 600;
  line-height: 2.5rem;
  border: none;
  outline: 0;
}
.contact_user_wrapper .contact_form_warpper input::-webkit-inner-spin-button,
.contact_user_wrapper .contact_form_warpper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact_user_wrapper .contact_form_warpper .form-control:focus {
  background-color: #fff;
  border-color: unset !important;
  outline: unset !important;
  box-shadow: unset !important;
  border: unset !important;
}
.contact_user_wrapper .contact_form_warpper ::placeholder {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: #b7b7b7;
}
.contact_user_wrapper .contact_form_warpper .contact_us {
  color: #01a753;
  border: 1px solid #01a753;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 1.6rem 0;
  border-radius: 8px;
  text-decoration: none;
  background: 0 0;
}
.location_info_wrapper .address_wrapper {
  margin: 6.4rem 0;
}
@media screen and (max-width: 767.5px) {
  .location_info_wrapper .address_wrapper {
    text-align: center;
  }
}
.location_info_wrapper .address_wrapper a {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #232323;
  text-align: start;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767.5px) {
  .location_info_wrapper .email_wrapp {
    text-align: center;
  }
}
.location_info_wrapper .email_wrapp a {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #666;
  text-decoration: none;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #dbdbdb;
  display: block;
}
.location_info_wrapper .phone_wrapp {
  padding: 1.6rem 0 5rem;
}
@media screen and (max-width: 767.5px) {
  .location_info_wrapper .phone_wrapp {
    text-align: center;
  }
}
.location_info_wrapper .phone_wrapp a {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.9rem;
  color: #666;
  text-decoration: none;
}
@media screen and (max-width: 767.5px) {
  .location_info_wrapper .privacy_policy {
    text-align: center;
  }
}
.location_info_wrapper .privacy_policy span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #666;
}
.location_info_wrapper .privacy_policy a {
  background: linear-gradient(90deg, #00a650 80.56%, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
}
.industry_event_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .industry_event_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .industry_event_wrapper {
    margin-top: 4rem;
  }
}

.industry_event_wrapper .industry_event_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 3.6rem);
  font-weight: 700;
  line-height: clamp(3.5rem, 3vw, 4.6rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;
  position: relative;
}
.industry_event_wrapper .industry_event_content h1:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 25%;
  background-color: #000;
  bottom: -10px;
  left: 0;
}
/* @media screen and (max-width: 767.5px) { */
/* .industry_event_wrapper .industry_event_content h1 { */
/* text-align: center; */
/* } */
/* } */

.industry_event_wrapper .industry_event_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;
  margin: 1.6rem 0 0;
}
/* @media screen and (max-width: 767.5px) { */
/* .industry_event_wrapper .industry_event_content p { */
/* margin: 0; */
/* text-align: center; */
/* } */
/* } */
@media screen and (max-width: 767.5px) {
  .industry_event_wrapper .industry_event_content p br {
    display: none;
  }
}
.blog_banner_slider2 .slick-dots {
  bottom: 20px !important;
}
.blog_banner_slider2 .slick-dots li {
  border-radius: 50px;
  border: 1px solid #cfcfcf;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}
.blog_banner_slider2 .slick-dots .slick-active {
  background: #fff;
}
.blog_banner_slider2 .slick-dots li button:before {
  color: #000 !important;
}
.media_kit_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .media_kit_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper {
    margin-top: 4rem;
  }
}
.media_kit_wrapper .blog_content {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .blog_content {
    top: 58%;
  }
}
.media_kit_wrapper .blog_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .blog_content h1 {
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .blog_content h1 br {
    display: none;
  }
}
.media_kit_wrapper .blog_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 1.6rem 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .blog_content p {
    margin: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .blog_content p br {
    display: none;
  }
}
.media_kit_wrapper .media_kit_card {
  position: relative;
  border-radius: 16px;
  padding: 12px;
  overflow: hidden;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .media_kit_card {
    padding: unset;
  }
}
.media_kit_wrapper .media_kit_card .media_kit_content {
  border: 1px solid #adadad;
  border-radius: 16px;
  padding: 3.2rem 4rem;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .media_kit_card .media_kit_content {
    padding: 2.2rem 2rem;
  }
}
.media_kit_wrapper .media_kit_card .media_kit_content .media_kit_pdf img {
  width: 4%;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .media_kit_card .media_kit_content .media_kit_pdf img {
    width: 12%;
  }
}
.media_kit_wrapper .media_kit_card .media_kit_content h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.2vw, 3.6rem);
  color: #000;
  font-weight: 600;
  line-height: 64px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  position: relative;
}
.media_kit_wrapper .media_kit_card .media_kit_content h2:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 5%;
  background-color: #000;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .media_kit_card .media_kit_content h2 {
    line-height: 24px;
  }
}
.media_kit_wrapper .media_kit_card .media_kit_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #000;
  margin: 2.6rem 0;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .media_kit_card .media_kit_content p {
    margin: 1rem 0;
  }
}
.media_kit_wrapper .media_kit_card .media_kit_content .dwld_btn {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  border: none;
  outline: 0;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  line-height: 2.5rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  position: absolute;
  right: 20px;
  bottom: 40px;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .media_kit_card .media_kit_content .dwld_btn {
    margin-top: 2rem;
    position: unset;
  }
}
.media_kit_wrapper .media_kit_card .media_kit_content .pausebtn {
  position: absolute;
  top: 0;
  right: 30px;
}
@media screen and (max-width: 767.5px) {
  .media_kit_wrapper .media_kit_card .media_kit_content .pausebtn {
    width: 60px;
  }
}
.distributor_channel_partner_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .distributor_channel_partner_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .distributor_channel_partner_wrapper {
    margin-top: 4rem;
  }
}
.distributor_channel_partner_wrapper .store_locate_iframe {
  height: 878px;
  border-radius: 12px;
}
@media screen and (max-width: 767.5px) {
  .distributor_channel_partner_wrapper .store_locate_iframe {
    height: 482px;
  }
}
.distributor_channel_partner_wrapper .adrress_data {
  overflow-y: scroll;
  height: 880px;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.0705882353);
}
@media screen and (max-width: 767.5px) {
  .distributor_channel_partner_wrapper .adrress_data {
    height: auto;
    overflow-y: auto;
  }
}
.distributor_channel_partner_wrapper .adrress_data::-webkit-scrollbar-track {
  background: #fff;
}
.distributor_channel_partner_wrapper .adrress_data::-webkit-scrollbar-thumb {
  background: #fff !important;
}
.distributor_channel_partner_wrapper
  .adrress_data
  ::-webkit-scrollbar-thumb:hover {
  background: #fff !important;
}
.distributor_channel_partner_wrapper .adrress_data ::-webkit-scrollbar {
  width: 4px;
  border-radius: 20px;
}
.distributor_channel_partner_wrapper .adrress_data ::-webkit-scrollbar-corner {
  background: #fff;
}
@media screen and (max-width: 767.5px) {
  .distributor_channel_partner_wrapper .adrress_data .get_direction_card {
    text-align: center;
  }
}
.distributor_channel_partner_wrapper .adrress_data .get_direction_card a {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #232323;
  text-decoration: underline;
}
.distributor_channel_partner_wrapper .adrress_data .get_direction_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #666;
  margin: 2.6rem 0;
}
.distributor_channel_partner_wrapper
  .adrress_data
  .get_direction_card
  .get_directionbtn {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #01a753;
  border: 1.3px solid #01a75d;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
}
.distributor_channel_partner_wrapper
  .adrress_data
  .state_city_wrapp
  .dropdown_div {
  width: 100%;
}
.distributor_channel_partner_wrapper
  .adrress_data
  .state_city_wrapp
  .dropdown_div
  label {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #424242;
}
.distributor_channel_partner_wrapper
  .adrress_data
  .state_city_wrapp
  .dropdown_div
  select {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #666;
  padding: 1.2rem;
  width: 100%;
  border: 1px solid #b4b4b4;
  border-radius: 8px;
  outline: 0;
}
.distributor_channel_partner_wrapper .adrress_data .partner_info_cards {
  margin-top: 7rem;
}
@media screen and (max-width: 767.5px) {
  .distributor_channel_partner_wrapper .adrress_data .partner_info_cards {
    margin-top: 4rem;
  }
}
.distributor_channel_partner_wrapper
  .adrress_data
  .partner_info_cards
  #store_locator_slider
  .slick-list {
  padding: 10px 9% 10px 0 !important;
}
.distributor_channel_partner_wrapper
  .adrress_data
  .partner_info_cards
  .partner_data_card {
  padding: 1.6rem;
  height: 230px;
  border-radius: 8px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767.5px) {
  .distributor_channel_partner_wrapper
    .adrress_data
    .partner_info_cards
    .partner_data_card {
    margin: 0 5px;
  }
}
.distributor_channel_partner_wrapper
  .adrress_data
  .partner_info_cards
  .partner_data_card
  h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 600;
  line-height: 3.2rem;
  color: #2e2e2e;
  margin-bottom: 1.4rem;
}
.distributor_channel_partner_wrapper
  .adrress_data
  .partner_info_cards
  .partner_data_card
  p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.1vw, 1.4rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #666;
  margin-bottom: 1.4rem;
}
.distributor_channel_partner_wrapper
  .adrress_data
  .partner_info_cards
  .partner_data_card
  .view_on_map_btn {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.1vw, 1.4rem);
  font-weight: 500;
  line-height: 1.9rem;
  background: linear-gradient(90deg, #00a650 80.56%, #00adeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid #00a650;
}
.press_release_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .press_release_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .press_release_wrapper {
    margin-top: 4rem;
  }
}
.press_release_wrapper .press_release_text {
  margin-bottom: 3rem;
}
.press_release_wrapper .press_release_text h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.2vw, 3.6rem);
  color: #2e2e2e;
  font-weight: 600;
  line-height: 32px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.press_release_wrapper .press_release_text .dropdown_div {
  width: 25%;
}
@media screen and (max-width: 767.5px) {
  .press_release_wrapper .press_release_text .dropdown_div {
    width: 100%;
  }
}
.press_release_wrapper .press_release_text .dropdown_div select {
  padding: 1.2rem;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #666;
  padding: 1.2rem;
  width: 100%;
  border: 1px solid #b4b4b4;
  border-radius: 8px;
  outline: 0;
}
.press_release_wrapper .press_release_content h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 600;
  line-height: 3.2rem;
  color: #00a650;
}
@media screen and (max-width: 767.5px) {
  .press_release_wrapper .press_release_content h3 {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767.5px) {
  .press_release_wrapper .press_release_content h3 br {
    display: none;
  }
}
.press_release_wrapper .press_release_content a {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.9rem;
  color: #232323;
  text-decoration: underline;
}
.press_release_wrapper .press_release_content .press_release_arrow {
  position: absolute;
  right: 0;
  top: 15px;
}
@media screen and (max-width: 767.5px) {
  .press_release_wrapper .press_release_content .press_release_arrow {
    right: -32px;
  }
}
/* .press_release_wrapper .press_release_content img { */
/* width: 70px; */
/* } */
/* @media screen and (max-width: 991.5px) { */
/* .press_release_wrapper .press_release_content img { */
/* width: 100%; */
/* } */
/* } */
.press_release_wrapper .press_release_content .press_details {
  padding: 2rem 0;
  position: relative;
}
@media screen and (max-width: 991.5px) {
  .press_release_wrapper .press_release_content .press_details {
    margin: 0 10px;
  }
}
/* .press_release_wrapper */
/* .press_release_content */
/* .press_details */
/* .press_release_img { */
/* width: 100px; */
/* } */
/* @media screen and (max-width: 991.5px) { */
/* .press_release_wrapper */
/* .press_release_content */
/* .press_details */
/* .press_release_img { */
/* width: 100%; */
/* } */
/* } */
/* .press_release_wrapper .press_release_content .press_details::before { */
/* position: absolute; */
/* content: ""; */
/* width: 2px; */
/* height: 100%; */
/* left: -40px; */
/* background-color: #a7a7a7; */
/* } */
/* @media screen and (max-width: 767.5px) { */
/* .press_release_wrapper .press_release_content .press_details::before { */
/* left: unset; */
/* top: -20px; */
/* width: 100%; */
/* height: 2px; */
/* } */
/* } */
.press_release_wrapper .press_release_content .press_release_item {
  border-bottom: 1px solid #e0e0e0;
}
.press_release_wrapper .press_release_slider .slick-list {
  padding: 10px 9% 10px 0 !important;
}
.offline_events_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .offline_events_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .offline_events_wrapper {
    margin-top: 4rem;
  }
}
.offline_events_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
  text-align: center;
}
.offline_events_wrapper .toggle-arrows button {
  background: 0 0;
  border: none;
  outline: 0;
}
.offline_events_wrapper .offline_event_slider .slick-list {
  padding: 10px 9% 0 0 !important;
}

.offline_events_wrapper .offline_events_card {
  margin-bottom: 5rem;
  margin: 0 10px;
  border-radius: 16px;
  transition: 0.5s;
  height: 470px;
  cursor: pointer;
  margin-bottom: 3rem;
  box-shadow: 0px 4.82px 28.94px 0px #00000029;
}
/* @media screen and (max-width: 1440px) { */
/* .offline_events_wrapper .offline_events_card { */
/* height: 440px; */
/* } */
/* } */
@media screen and (max-width: 767.5px) {
  .offline_events_wrapper .offline_events_card {
    height: 450px;
  }
}

.offline_events_wrapper .offline_events_card:hover {
  box-shadow: 0px 5px 10px grey;
  transition: 0.5s;
  transform: scale(1.03);
}
@media screen and (max-width: 767.5px) {
  .offline_events_wrapper .offline_events_card:hover {
    transform: scale(1);
    box-shadow: unset;
  }
}
.offline_events_wrapper .offline_events_card .offline_events_card_content {
  padding: 10px;
}
.offline_events_wrapper .offline_events_card img {
  border-radius: 22px;
  padding: 12px;
}
.offline_events_wrapper .offline_events_card span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.4em;
  color: #6c757d;
  margin-top: 1.5rem;
  display: block;
}
.offline_events_wrapper .offline_events_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 1.6rem 0 1.2rem;
}
.offline_events_wrapper .offline_events_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: rgba(46, 46, 46, 0.8980392157);
}
.image_gallary_wrapper {
  margin-top: 6rem;
}
@media screen and (max-width: 1440px) {
  .image_gallary_wrapper {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767.5px) {
  .image_gallary_wrapper {
    margin-top: 2rem;
  }
}
.image_gallary_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 600;
  line-height: 5.1rem;
  /* text-align: center; */
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
  /* text-align: center; */
}
.image_gallary_wrapper .toggle-arrows button {
  background: 0 0;
  border: none;
  outline: 0;
}
.image_gallary_wrapper .gallary_slider .slick-list {
  padding: 10px 9% 10px 0 !important;
}
.image_gallary_wrapper .image_gallary_card {
  margin: 0 10px;
  overflow: hidden;
  border-radius: 1.6rem;
  cursor: pointer;
}
.image_gallary_wrapper .image_gallary_card img {
  transition: 0.5s;
}
.image_gallary_wrapper .image_gallary_card img:hover {
  transition: 0.5s;
  transform: scale(1.1);
}
.image_gallary_wrapper .image_gallary_card:hover .img_gal_content {
  transform: translateY(0);
  transition: 0.3s;
}

.image_gallary_wrapper .image_gallary_card .img_gal_content {
  background: linear-gradient(
      90deg,
      rgba(0, 166, 80, 0.4) 80.56%,
      rgba(0, 173, 235, 0.4) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32));
  backdrop-filter: blur(8px);
  padding: 1rem 3rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 70px;
  transform: translateY(90px);
  transition: 0.9s;
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 767.5px) {
  .image_gallary_wrapper .image_gallary_card .img_gal_content {
    transform: translateY(0);
  }
}

.image_gallary_wrapper .image_gallary_card .img_gal_content h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.1rem;
  text-align: left;
  color: #fff;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.video_gallary_wrapper {
  margin-top: 9rem;
}
@media screen and (max-width: 1440px) {
  .video_gallary_wrapper {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767.5px) {
  .video_gallary_wrapper {
    margin-top: 4rem;
  }
}
.video_gallary_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 2vw, 4rem);
  font-weight: 600;
  line-height: 5.1rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
  text-align: center;
}
.video_gallary_wrapper .toggle-arrows button {
  background: 0 0;
  border: none;
  outline: 0;
}
.video_gallary_wrapper .video_slider .slick-list {
  padding: 10px 9% 10px 0 !important;
}
.video_gallary_wrapper .video_gallary_card {
  margin: 0 10px;
  overflow: hidden;
  border-radius: 1.6rem;
}
/*&^^^^^^^^^^^^^^ new page ^^^^^^^^^^^^*/
.join_us_wrapper img {
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.join_us_wrapper .join_us_content {
  position: absolute;
  top: 85%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767.5px) {
  .join_us_wrapper .join_us_content {
    top: 80%;
    width: 100%;
  }
}
.join_us_wrapper .join_us_content h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3.2rem, 2vw, 4rem);
  font-weight: 700;
  line-height: clamp(4.5rem, 3vw, 5.2rem);
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  width: fit-content;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 1.6rem;
}
.join_us_wrapper .join_us_content h1 span {
  background: linear-gradient(90deg, #00adeb 0, #00a650 100%);
}
@media screen and (max-width: 767.5px) {
  .join_us_wrapper .join_us_content h1 br {
    display: none;
  }
}
.join_us_wrapper .join_us_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 2.2rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 767.5px) {
  .join_us_wrapper .join_us_content p {
    margin: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767.5px) {
  .join_us_wrapper .join_us_content p br {
    display: none;
  }
}
.join_us_wrapper .breadcrumb {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767.5px) {
  .join_us_wrapper .breadcrumb {
    top: 15%;
  }
}
.join_us_wrapper .breadcrumb li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 3.2rem;
  color: #fff;
}
.join_us_wrapper .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.join_us_user_wrapper {
  margin: 9rem 0;
}
@media screen and (max-width: 1440px) {
  .join_us_user_wrapper {
    margin: 7rem 0;
  }
}
@media screen and (max-width: 767.5px) {
  .join_us_user_wrapper {
    margin: 4rem 0;
  }
}
.join_us_user_wrapper .hello_img {
  width: 3%;
}
@media screen and (max-width: 767.5px) {
  .join_us_user_wrapper .hello_img {
    width: 10%;
  }
}
.join_us_user_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #728196;
}
.join_us_user_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3.2rem, 2vw, 4.4rem);
  font-weight: 600;
  line-height: 3.1rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.join_us_user_wrapper .contact_form_warpper {
  padding: 3.2rem;
  background: #f9f9f9;
  border-radius: 16px;
}
.join_us_user_wrapper .contact_form_warpper .error {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 2rem;
  color: red;
  display: block;
}
@media screen and (max-width: 767.5px) {
  .join_us_user_wrapper .contact_form_warpper {
    padding: 2.2rem;
  }
}
.join_us_user_wrapper .contact_form_warpper .input_wrap {
  margin-bottom: 3.2rem;
}
.join_us_user_wrapper .contact_form_warpper label {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 600;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #394658;
}
.join_us_user_wrapper .contact_form_warpper input,
.join_us_user_wrapper .contact_form_warpper textarea {
  padding: 1rem 1.4rem;
  border-radius: 1.2rem;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 600;
  line-height: 2.5rem;
  border: none;
  outline: 0;
}
.join_us_user_wrapper .contact_form_warpper input::-webkit-inner-spin-button,
.join_us_user_wrapper .contact_form_warpper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.join_us_user_wrapper .contact_form_warpper .form-control:focus {
  background-color: #fff;
  border-color: unset !important;
  outline: unset !important;
  box-shadow: unset !important;
  border: unset !important;
}
.join_us_user_wrapper .contact_form_warpper ::placeholder {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: #b7b7b7;
}
.join_us_user_wrapper .contact_form_warpper .contact_us {
  color: #01a753;
  border: 1px solid #01a753;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 1.6rem 0;
  border-radius: 8px;
  text-decoration: none;
  background: 0 0;
}
.join_us_user_wrapper .contact_form_warpper input:disabled {
  background-color: #ececec;
  color: #ccc;
  cursor: not-allowed;
  user-select: none;
}
.join_us_user_wrapper .join_us_wrap .about_join_us h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.2rem, 2vw, 3.2rem);
  font-weight: 500;
  line-height: 3.1rem;
  color: #394658;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.join_us_user_wrapper .join_us_wrap .about_benefit {
  margin-top: 8rem;
}
@media screen and (max-width: 767.5px) {
  .join_us_user_wrapper .join_us_wrap .about_benefit {
    margin-top: 2rem;
  }
}
.join_us_user_wrapper .join_us_wrap .about_benefit h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.2rem, 2vw, 3.2rem);
  font-weight: 500;
  line-height: 3.1rem;
  color: #394658;

  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 3.2rem;
}
.join_us_user_wrapper .join_us_wrap .about_benefit .benefit_card {
  padding: 20px 10px 25px 40px;
  background: #fcfcfc;
  margin-bottom: 2.4rem;
  position: relative;
  height: 130px;
  transition: 0.5s;
  border-radius: 12px;
}
@media screen and (max-width: 767.5px) {
  .join_us_user_wrapper .join_us_wrap .about_benefit .benefit_card {
    height: auto;
  }
}
.join_us_user_wrapper .join_us_wrap .about_benefit .benefit_card:hover {
  box-shadow: 0px 6px 10px #b4b4b4;
  background: linear-gradient(90deg, #00adeb 0, #00a650 100%);
  transition: 0.5s;
  border-radius: 12px;
}
.join_us_user_wrapper .join_us_wrap .about_benefit .benefit_card .svg-hover {
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
}

.join_us_user_wrapper .join_us_wrap .about_benefit .benefit_card h3 {
  margin-bottom: 1rem;
  color: #394658;
}
.join_us_user_wrapper .join_us_wrap .about_benefit .benefit_card:hover h3 {
  color: #fff;
}
.join_us_user_wrapper .join_us_wrap .about_benefit .benefit_card p {
  font-size: clamp(1.2rem, 1.2vw, 1.2rem);
  line-height: 1.5rem;
}
.join_us_user_wrapper .join_us_wrap .about_benefit .benefit_card:hover p {
  color: #fff;
}
.join_us_user_wrapper .join_us_wrap .about_benefit .benefit_card:hover svg {
  filter: brightness(0) invert(1); /* Makes the SVG white */
  /* transition: all 0.3s ease-in-out; */
}
/* &copex page */

.model_wrapper {
  margin: 9rem 0;
}
@media screen and (max-width: 1440px) {
  .model_wrapper {
    margin: 7rem 0;
  }
}
@media screen and (max-width: 767.5px) {
  .model_wrapper {
    margin: 4rem 0;
  }
}
.model_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.2vw, 3.6rem);
  color: #000;
  font-weight: 600;
  line-height: 40px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  position: relative;
  margin-bottom: 1.6rem;
}
.model_wrapper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.2vw, 2.2rem);
  font-weight: 400;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #728196;
}
.model_features_wrapper {
  padding: 7rem 0;
  background-image: url("../img/model_bg.png");
  /* background-repeat: no-repeat; */
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .model_features_wrapper {
    padding: 5rem 0 0;
  }
}
.model_features_wrapper .model_features_content .model_features_card {
  margin-bottom: 11rem;
}
@media screen and (max-width: 767.5px) {
  .model_features_wrapper .model_features_content .model_features_card {
    margin-bottom: 5rem;
  }
}
.model_features_wrapper
  .model_features_content
  .model_features_card
  .model_features_data {
  padding: 2rem;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #b9b9b9;
  width: 45%;
  border-radius: 64px;
  background-color: #fff;
  /* transition: background-color 0.2s ease, color 0.2s ease; */
}
@media screen and (max-width: 767.5px) {
  .model_features_wrapper
    .model_features_content
    .model_features_card
    .model_features_data {
    width: 100%;
    padding-left: 8rem;
  }
}
.model_features_wrapper
  .model_features_content
  .model_features_card
  .model_features_data
  .model_features_data_img {
  position: absolute;
  left: -30px;
  bottom: 0;
  width: 120px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767.5px) {
  .model_features_wrapper
    .model_features_content
    .model_features_card
    .model_features_data
    .model_features_data_img {
    left: -10px;
    width: 80px;
  }
}
.model_features_wrapper
  .model_features_content
  .model_features_card
  .model_features_data
  .model_features_arrow_img {
  position: absolute;
  right: -62%;
  top: 50%;
  z-index: -1;
  transition: 0.2s;
}
@media screen and (max-width: 767.5px) {
  .model_features_wrapper
    .model_features_content
    .model_features_card
    .model_features_data
    .model_features_arrow_img {
    display: none;
  }
}
.model_features_wrapper
  .model_features_content
  .model_features_card
  .model_features_data
  .model_features_arrow_img2 {
  position: absolute;
  left: -71%;
  top: 50%;
  z-index: -1;
  transition: 0.2s;
}
@media screen and (max-width: 767.5px) {
  .model_features_wrapper
    .model_features_content
    .model_features_card
    .model_features_data
    .model_features_arrow_img2 {
    display: none;
  }
}
.model_features_wrapper .model_features_content .card2 {
  margin: 0 0 0 auto;
  /* width: 30% !important; */
}
@media screen and (max-width: 767.5px) {
  .model_features_wrapper .model_features_content .card2 {
    margin: 0;
  }
}
.padding-start-11 {
  padding-left: 11rem;
}
@media screen and (max-width: 767.5px) {
  .padding-start-11 {
    padding-left: 0;
  }
}
.model_features_wrapper
  .model_features_content
  .model_features_card
  .model_features_data
  p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.5vw, 2.4rem);
  font-weight: 400;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;
}
.model_features_wrapper
  .model_features_content
  .model_features_card
  .model_features_data
  span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 1.2vw, 4rem);
  font-weight: 700;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;
}

.opex_key_features_wrapper {
  background-image: url("../img/model_bg.png");
  width: 100%;
  padding: 6rem 0;
}
@media screen and (max-width: 767.5px) {
  .opex_key_features_wrapper {
    padding: 6rem 0 0;
  }
}
.opex_key_features_content {
  margin-bottom: 4rem;
}
.opex_key_features_content h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.2vw, 3.6rem);
  color: #000;
  font-weight: 600;
  line-height: 64px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-align: center;
}
.opex_key_features_content p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.2vw, 2.2rem);
  font-weight: 400;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #728196;
  text-align: center;
}
.opex_key_features_wrapper .opex_card {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 12px;
  padding: 5rem 3rem;
}

@media screen and (max-width: 767.5px) {
  .opex_key_features_wrapper .opex_card {
    margin-bottom: 2rem;
  }
}
.opex_key_features_wrapper .opex_feature_card {
  width: 30%;
}
.opex_key_features_wrapper .opex_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.2vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #728196;
}
.opex_key_features_wrapper .opex_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.2rem, 1.2vw, 2.6rem);
  font-weight: 500;
  line-height: 2.1rem;
  text-align: left;
  color: #000;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.2rem;
}
.opex_key_features_wrapper .opex_card img {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
}
@media screen and (max-width: 767.5px) {
  .opex_key_features_wrapper .opex_card img {
    right: -10px;
  }
}
/* &&&#########################& opex card */
.opex_feature_wrapper {
  padding: 15rem 0 7rem;
}
@media screen and (max-width: 767.5px) {
  .opex_feature_wrapper {
    padding: 1rem 0 2rem;
  }
}
/* @media screen and (max-width: 1440px) { */
/* .opex_feature_wrapper { */
/* margin: 7rem 0; */
/* } */
/* } */
/* @media screen and (max-width: 767.5px) { */
/* .opex_feature_wrapper { */
/* margin: 4rem 0; */
/* } */
/* } */
.opex_feature_wrapper .opex_features {
  margin-bottom: 4rem;
  height: 150px;
  width: 300px;
  transition: 0.5s;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 2.4rem;
  background-color: #fff;
}
@media screen and (max-width: 767.5px) {
  .opex_feature_wrapper .opex_features {
    height: auto;
    width: 100%;
    margin-bottom: 2rem;
  }
}

.opex_feature_wrapper .center_img {
  width: 45%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767.5px) {
  .opex_feature_wrapper .center_img {
    display: none;
  }
}
.opex_feature_wrapper .opex_features img {
  width: 45%;
  transition: 0.5s;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767.5px) {
  .opex_feature_wrapper .opex_features img {
    width: 20%;
    margin: 0;
  }
}
.opex_feature_wrapper .opex_features:hover img {
  width: 20%;
  transition: 0.5s;

  margin: 0;
}

.opex_feature_wrapper .opex_features h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 1.2vw, 2.4rem);
  font-weight: 700;
  line-height: 2.1rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 2rem 0 1.2rem;
}
.opex_feature_wrapper .opex_features p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2.5rem;
  color: rgba(46, 46, 46, 0.8980392157);
  text-align: center;
}
.opex_feature_wrapper .opex_card2 {
  position: absolute !important;
  top: -70px;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767.5px) {
  .opex_feature_wrapper .opex_card2 {
    position: unset !important;
    transform: unset;
  }
}
.opex_feature_wrapper .opex_card1 {
  position: absolute !important;
  top: 25%;
  left: 18%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767.5px) {
  .opex_feature_wrapper .opex_card1 {
    position: unset !important;
    transform: unset;
  }
}
.opex_feature_wrapper .opex_card3 {
  position: absolute !important;
  top: 25%;
  left: 82%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767.5px) {
  .opex_feature_wrapper .opex_card3 {
    position: unset !important;
    transform: unset;
  }
}
.opex_feature_wrapper .opex_card4 {
  position: absolute !important;
  top: 75%;
  left: 76%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767.5px) {
  .opex_feature_wrapper .opex_card4 {
    position: unset !important;
    transform: unset;
  }
}
.opex_feature_wrapper .opex_card5 {
  position: absolute !important;
  top: 75%;
  left: 23%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767.5px) {
  .opex_feature_wrapper .opex_card5 {
    position: unset !important;
    transform: unset;
  }
}

/* &%#################### open access page######################### */
.open_access_card_wrapp {
  margin-top: 8rem;
}
@media screen and (max-width: 767.5px) {
  .open_access_card_wrapp {
    margin-top: 4rem;
  }
}
.open_access_card_wrapp .open_access_card {
  position: relative;
  padding: 30px 30px 30px 50px;
  border: 2px solid #13b601;
  border-radius: 24px;
}
@media screen and (max-width: 767.5px) {
  .open_access_card_wrapp .open_access_card {
    margin-bottom: 2rem;
  }
}
.open_access_card_wrapp .open_access_card .open_access_check {
  position: absolute;
  left: -20px;
  top: 10px;
  width: 15%;
}
.open_access_card_wrapp .open_access_card p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 500;
  color: #666666;
  line-height: 2rem;
}
.open_access_card_wrapp .open_access_card h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 1.2vw, 2.4rem);
  font-weight: 700;
  color: #000;
  line-height: 2.5rem;
  margin-bottom: 1.6rem;
}

.open_access_timeline_features {
  padding-bottom: 3rem;
}
.open_access_timeline_features h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.2vw, 3.6rem);
  color: #000;
  font-weight: 600;
  line-height: 40px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.open_access_timeline_features p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2.2rem);
  font-weight: 400;
  line-height: 2.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 120px;

  /* color: #728196; */
}
@media screen and (max-width: 767.5px) {
  .open_access_timeline_features p {
    margin-bottom: 60px;
  }
}
.open_access_timeline_features .timeline_features_card,
.timeline_features_card2 {
  padding: 2.4rem 3.2rem;
  border: 1px solid #b9b9b9;
  border-radius: 64px;
  width: 40%;
  position: relative;

  box-shadow: 0px 16px 40px 10px #10182840;
  margin-bottom: 5rem !important;
}
@media screen and (max-width: 767.5px) {
  .open_access_timeline_features .timeline_features_card,
  .timeline_features_card2 {
    width: 100%;
    z-index: 5;
    padding: 2rem;
  }
}
.open_access_timeline_features .timeline_features_card p {
  margin-bottom: 0;
}
.open_access_timeline_features .timeline_features_card2 p {
  margin-bottom: 0;
  margin-left: 20px;
}
@media screen and (max-width: 767.5px) {
  .open_access_timeline_features .timeline_features_card2 p {
    margin-left: 50px;
  }
}

.open_access_timeline_features .timeline_features_card:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: linear-gradient(102.69deg, #00a7e1 0, #00a551 100.55%);

  border-radius: 50%;
  /* right: -130px; */
  right: -30%;
  top: 50%;
}
@media screen and (max-width: 767.5px) {
  .open_access_timeline_features .timeline_features_card:after {
    position: unset;
  }
}
.timeline_features_card2 {
  margin: 0 0 0 auto;
  text-align: center;
}
.open_access_timeline_features .timeline_features_card2:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  /* background-color: #00a551; */
  background: linear-gradient(102.69deg, #00a7e1 0, #00a551 100.55%);
  border-radius: 50%;
  left: -25%;
  top: 50%;
}
@media screen and (max-width: 767.5px) {
  .open_access_timeline_features .timeline_features_card2:after {
    position: unset;
  }
}
.open_access_timeline_features .card_numer1 {
  background-color: #a9e1c4;
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  padding: 30px 25px;
  border-radius: 50%;
  font-family: "Exo 2", sans-serif;

  font-weight: 700;
  font-size: clamp(3rem, 1.4vw, 4.8rem);
  line-height: 28.96px;
  color: #000;
}
@media screen and (max-width: 767.5px) {
  .open_access_timeline_features .card_numer1 {
    padding: 25px 20px;
  }
}
.open_access_timeline_features .card_numer2 {
  background-color: #a9e1c4;
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  padding: 30px 25px;
  border-radius: 50%;
  font-family: "Exo 2", sans-serif;

  font-weight: 700;
  font-size: clamp(3rem, 1.4vw, 4.8rem);

  line-height: 28.96px;
  color: #000;
}
@media screen and (max-width: 767.5px) {
  .open_access_timeline_features .card_numer2 {
    padding: 25px 20px;
  }
}
.timeline_line {
  position: absolute;
  left: 50%;
  transform: translateX(10px);
  height: 550px;
}
@media screen and (max-width: 767.5px) {
  .timeline_line {
    transform: translateX(-50%);
    height: 500px;
  }
}

.open_access_captive_model_wrapper {
  background-image: url("../img/open_access_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 6rem 0;
  overflow: hidden;
}
.open_access_captive_model_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.2vw, 3.6rem);
  color: #fff;
  font-weight: 700;
  line-height: 40px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-align: center;
  margin-bottom: 4rem;
}

.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card1 {
  padding: 4.5rem 6.4rem;
  background: #ffffff;
  border-radius: 18px;
}
@media screen and (max-width: 767.5px) {
  .open_access_captive_model_wrapper
    .open_access_captive_model_cards_wrapp
    .open_access_captive_model_card1 {
    padding: 3.5rem 4.4rem;
  }
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card1
  h2 {
  font-family: "Exo 2", sans-serif;

  font-weight: 500;
  font-size: clamp(2rem, 1.2vw, 2.4rem);
  line-height: 28.96px;
  color: #000;
  text-align: left;
  margin-top: 2rem;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card2
  .hold_consume_card
  h2 {
  font-family: "Exo 2", sans-serif;

  font-weight: 600;
  font-size: clamp(2rem, 1.2vw, 2.4rem);
  line-height: 28.96px;
  color: #000;
  text-align: left;
  margin-bottom: 1rem;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card2
  .hold_consume_card
  .holding_number {
  font-family: "Exo 2", sans-serif;

  font-weight: 700;
  font-size: clamp(5rem, 1.2vw, 6.4rem);
  line-height: 5rem;
  color: #01a059;
  text-align: left;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card2
  .hold_consume_card
  .holding_text {
  font-family: "Exo 2", sans-serif;

  font-weight: 700;
  font-size: clamp(2.2rem, 1.2vw, 3.2rem);
  line-height: 5rem;
  color: #01a059;
  text-align: left;
  margin-left: 4rem;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card2
  .hold_consume_card
  p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 700;
  color: #666666;
  line-height: 2rem;
  margin-top: 1.3rem;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card2
  .hold_consume_card {
  padding: 3.2rem 4rem;
  background: #ffffff;
  border-radius: 18px;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card3 {
  padding: 5.2rem 3.4rem;
  background: #ffffff;
  border-radius: 18px;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card3
  h3 {
  font-family: "Exo 2", sans-serif;

  font-weight: 700;
  font-size: clamp(1.8rem, 1.2vw, 2rem);
  line-height: 2rem;
  color: #000;
  text-align: left;
  margin-bottom: 1.6rem;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card3
  p {
  font-family: "Exo 2", sans-serif;

  font-weight: 500;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 2rem;
  color: #666666;
  text-align: left;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .open_access_captive_model_card3
  img {
  height: 60px;
}
.open_access_captive_model_wrapper
  .open_access_captive_model_cards_wrapp
  .exemption_collaborative_card1 {
  margin-bottom: 7rem;
}
@media screen and (max-width: 767.5px) {
  .open_access_captive_model_wrapper
    .open_access_captive_model_cards_wrapp
    .exemption_collaborative_card1 {
    margin-bottom: 5rem;
  }
}
.open_access_captive_model_wrapper .open_access_captive_model_card1,
.open_access_captive_model_card2,
.open_access_captive_model_card3 {
  height: 400px;
}
@media screen and (max-width: 767.5px) {
  .open_access_captive_model_wrapper .open_access_captive_model_card1,
  .open_access_captive_model_card2,
  .open_access_captive_model_card3 {
    height: auto;
  }
}

.open_access_model_benefits_wrapper {
  margin: 9rem 0;
}
@media screen and (max-width: 1440px) {
  .open_access_model_benefits_wrapper {
    margin: 7rem 0;
  }
}
@media screen and (max-width: 767.5px) {
  .open_access_model_benefits_wrapper {
    margin: 4rem 0;
  }
}
.open_access_model_benefits_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.2vw, 3.6rem);
  color: #000;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 1.6rem;
}
.open_access_model_benefits_wrapper ul li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6em, 1.2vw, 1.8rem);
  font-weight: 400;
  line-height: 21.72px;
  margin: 35px 0;
  position: relative;
  overflow: hidden;
  /* border-radius: 12px; */
  cursor: pointer;
  width: fit-content;
}
@media screen and (max-width: 1440px) {
  .open_access_model_benefits_wrapper ul li {
    margin: 30px 0;
  }
}

.open_access_model_benefits_wrapper ul li p {
  padding: 13px;
  background: linear-gradient(
    90deg,
    rgba(0, 166, 80, 0.04) 80.56%,
    rgba(0, 173, 235, 0.04) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
}
.open_access_model_benefits_wrapper ul li p span {
  color: #232323;
  font-weight: 600;
  font-size: clamp(1.6em, 1.2vw, 1.8rem);
  margin-right: 1.5rem;
}

.open_access_model_benefits_wrapper ul li::before {
  position: absolute;
  content: "";
  left: 0;
  height: 100%;
  width: 6px;
  transition: 0.5s;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: -1;

  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
}

.open_access_model_benefits_wrapper ul li:hover::before {
  width: 100%;
  transition: 0.5s;
}

.open_access_model_benefits_wrapper ul li:hover p {
  color: #fff;
}

.ece_goals_wrapper {
  padding: 5rem 0;
  background-image: url("../img/model_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .ece_goals_wrapper {
    padding: 5rem 0 0;
  }
}
.ece_goals_wrapper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.8rem, 2.2vw, 3.6rem);
  color: #000;
  font-weight: 700;
  line-height: 64px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-align: center;
  margin-bottom: 4rem;
}
.ece_goals_wrapper .ece_goal_card {
  background: #ffffff;
  border-radius: 16px;
  padding: 4rem 2.4rem;
  margin-bottom: 6rem;
}
.ece_goals_wrapper .ece_goal_card h2 {
  font-family: "Exo 2", sans-serif;

  font-weight: 700;
  font-size: clamp(3rem, 1.2vw, 4.8rem);
  line-height: 28.96px;
  color: #000;
  text-align: left;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  top: -15px;
  left: 30px;
}
.ece_goals_wrapper .ece_goal_card h3 {
  font-family: "Exo 2", sans-serif;

  font-weight: 500;
  font-size: clamp(2rem, 1.2vw, 2.4rem);
  line-height: 28.96px;
  color: #000;
  text-align: left;
}
.ece_goals_wrapper .ece_goal_card img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
}

/* &####chatbot */
.artibot-wrapper--3PaNf .artibot-launcher--dBP9o {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%) !important;
}
.artibot-wrapper--3PaNf .artibot-launcher--dBP9o:hover {
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%) !important;
}

@media screen and (max-width: 767.5px) {
  .artibot-wrapper--3PaNf
    .artibot-launcher-bubble--1dzBs.artibot-launcher-bottom-right--2_XHM {
    display: none !important;
  }
}
    .claculator_modal_pdf .modal-dialog {
        max-width: 1200px !important;
    }

    .claculator_modal_pdf .modal-dialog .btn-close {
        position: absolute;
        right: 0;
        font-size: 1.4rem;
    }
  .progress-bar {
      width: 100%;
      height: 15px;
      background-color: #E6E6E6;
      border-radius: 9px;
      overflow: hidden;
      margin: 10px 0; /* Adjust spacing as needed */
  }
  .progress-bar-fill {
      height: 100%;
      background-color: #00ADEB;
      width: 100%; /* Represents 90% fill */
  }

   .progress-bar-fill-solar {
      height: 100%;
      background-color: #00A650;
      width: 10%; /* Represents 90% fill */
  }
    .claculator_modal_pdf .modal-dialog .modal-content {
        padding: 2rem;
        border-radius: 24px !important;
    }

    @media screen and (max-width: 767.5px) {
        .claculator_modal_pdf .modal-dialog .modal-content {
            /* height: 600px; */
            /* overflow-y: scroll; */
            margin-top: 10rem;
        }
    }

    .claculator_modal_pdf .modal-dialog .modal-content h2 {
        font-family: "Exo 2", sans-serif;
        font-size: clamp(2rem, 2vw, 2.4rem);
        font-weight: 600;
        line-height: 3.8rem;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin-bottom: 1.6rem;
    }

    .claculator_modal_pdf .modal-dialog .modal-content p {
        font-family: "Exo 2", sans-serif;
        font-size: clamp(1.6rem, 1.2vw, 2rem);
        font-weight: 400;
        line-height: normal;

        color: rgba(46, 46, 46, 0.8980392157);
    }

    .disclaimer_text {
        font-size: clamp(1rem, 1vw, 1.2rem) !important;
        line-height: 1.9rem !important;

    }

    /* .claculator_modal_pdf .modal-dialog .modal-content .solar_calculator_toggle { */
    /* margin-bottom: 3.2rem; */
    /* } */
    .claculator_modal_pdf .modal-dialog .modal-content .solar_calculator_toggle span {
        cursor: pointer;
        font-family: "Exo 2", sans-serif;
        font-size: clamp(1.4rem, 1.2vw, 1.6rem);
        font-weight: 400;
        line-height: 2.5rem;
        color: rgba(46, 46, 46, 0.8980392157);
        padding: 8px 12px;
        border-radius: 6px;
        border: 1px solid #cbcbcb;
    }



    .claculator_modal_pdf .modal-dialog .modal-content .estimate_wrapper .estimate_card {
        border: 1px solid #b4b4b4;
        border-radius: 16px;
        padding: 2rem;
    }

    .claculator_modal_pdf .modal-dialog .modal-content .estimate_wrapper .estimate_card h3 {
        font-family: "Exo 2", sans-serif;
        font-size: clamp(1.6rem, 1.2vw, 2rem);
        font-weight: 700;
        line-height: 2.1rem;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin-bottom: 2rem;
    }

    .claculator_modal_pdf .modal-dialog .modal-content .estimate_wrapper .estimate_card span {
        color: #00adeb;
        font-family: "Exo 2", sans-serif;
        font-size: clamp(2.3rem, 1.2vw, 4rem);
        font-weight: 600;
        line-height: 2.1rem;
    }

    .claculator_modal_pdf .modal-dialog .modal-content .estimate_wrapper .dlwd_report {
        padding: 10px;
        border-radius: 8px;
        background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
        font-family: "Exo 2", sans-serif;
        font-size: clamp(1.4rem, 1.2vw, 1.6rem);
        font-weight: 400;
        line-height: 2rem;
        color: #fff;
        border: none;
        outline: 0;
        width: 50%;
        margin: 0 auto;
        display: block;
        margin-top: 2rem;
    }

    @media screen and (max-width: 767.5px) {
        .claculator_modal_pdf .modal-dialog .modal-content .estimate_wrapper .dlwd_report {
            width: 100%;
        }
    }

    .claculator_modal_pdf .modal-dialog .modal-content .estimate_wrapper .reng_img {
        width: 100%;
        background: #e6e6e6;
        border-radius: 9px;
    }
    
    .expression_of_interest .modal-content {
  padding: 2rem;
  border-radius: 24px;
}
.expression_of_interest .modal-content .btn-close {
  position: absolute;
  right: 0;
  font-size: 1.4rem;
}
.expression_of_interest h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 2.4rem);
  font-weight: 600;
  line-height: 160%;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.6rem;
}
.expression_of_interest p,
ul li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1rem, 1vw, 1.4rem);
  font-weight: 400;
  line-height: 140%;

  color: rgba(46, 46, 46, 0.8980392157);
  text-align: start;
}
.expression_of_interest h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
  font-weight: 600;
  line-height: 140%;
  color: #424242;

  color: rgba(46, 46, 46, 0.8980392157);
  text-align: start;
  margin: 18px 0 12px;
}
.expression_of_interest span {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1rem, 0.9vw, 1.2rem);
  font-weight: 400;
  line-height: 140%;

  color: rgba(46, 46, 46, 0.8980392157);
  text-align: start;
  margin-bottom: 18px;
  display: block;
}
@media screen and (max-width: 767.5px) {
  .expression_of_interest span br {
    display: none;
  }
}
.expression_of_interest ul {
  padding-left: 2rem !important;
}
.expression_of_interest ul li {
  list-style: disc;
}
.expression_of_interest .apply_now {
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00a650 0, #00adeb 100%);
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 2rem;
  color: #fff;
  border: none;
  outline: 0;
  padding: 14px 52px;
  /* width: 47%; */
  display: block;
  width: fit-content;
  margin: 0.5rem 0 0 auto;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767.5px) {
  .expression_of_interest .apply_now {
    padding: 10px 40px;
  }
}

.privacy_policy_wrappper {
  padding-top: 11rem;
}
.privacy_policy_wrappper h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4rem);
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0%;
  color: #333333;
  text-align: center;
  margin-bottom: 1rem;
}
.privacy_policy_wrappper h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2.5rem, 1.3vw, 4rem);
  font-weight: 600;
  /* text-align: start; */
  color: #5C5C59;
  line-height: 140%;
  text-decoration: underline;
  margin-bottom: 1.5rem;
}
.privacy_policy_wrappper h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  font-weight: 600;
  line-height: 140%;
  text-align: left;
  color: #000;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 1.5rem;
}
.privacy_policy_wrappper p {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 140%;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #343434;
  margin-bottom: 1.5rem;
}
.privacy_policy_wrappper ul,
ol {
  padding-left: 2rem;
}
.privacy_policy_wrappper ul li {
  list-style: disc;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 140%;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #343434;
  margin-bottom: 1.5rem;
}
.privacy_policy_wrappper ol li {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  font-weight: 500;
  line-height: 140%;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #343434;
  margin-bottom: 1.5rem;
  list-style-type: decimal;
}