.poppins-thin {
  font-family: "Poppins", system-ui;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", system-ui;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", system-ui;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", system-ui;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", system-ui;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", system-ui;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", system-ui;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", system-ui;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", system-ui;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", system-ui;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", system-ui;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", system-ui;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", system-ui;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", system-ui;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", system-ui;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", system-ui;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", system-ui;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", system-ui;
  font-weight: 900;
  font-style: italic;
}

html {
  overflow-x: hidden;
}
html.loading {
  overflow: hidden;
}

body {
  background-color: #F5F6F9;
  min-height: 100vh;
  color: #0F4416;
  font-size: 1rem;
  line-height: 1.6rem;
  font-weight: 400;
  overflow-x: hidden;
}
body a, body button {
  text-decoration: none;
  outline: none;
  box-shadow: none;
  border: none;
  transition: all 0.5s ease-in-out !important;
}
body h1, body h2, body h3, body h4, body h5, body h6, body strong, body b {
  font-family: "Poppins", system-ui;
  font-weight: 700;
  font-style: normal;
}
body p {
  font-size: 1rem;
}
body img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .text-white {
  color: #ffffff;
}
body .text-grey {
  color: #8a8787;
}
body .text-red {
  color: #ff0000;
}
body .text-primary {
  color: #0F4416 !important;
}
body .text-secondary {
  color: #0F8320 !important;
}
body .text-justify {
  text-align: justify;
}
body .min-vh-80 {
  min-height: 80vh;
}

/*** CTA ***/
.cta {
  background-color: #0F8320;
  transition: all 0.5s ease-in-out !important;
  cursor: pointer;
  height: 66px;
  width: 220px;
  border-radius: 8px;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.cta span {
  color: #ffffff;
  cursor: pointer;
}
.cta:hover {
  filter: drop-shadow(2px 4px 6px #0F8320);
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(1, 1);
  }
}
/*** General ***/
.card {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
}
.card p {
  color: #8a8787;
}

.loading {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #F5F6F9;
  z-index: 1031;
}
.loading .logo {
  margin-bottom: 88px;
}
.loading .boxes {
  --size: 32px;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}
.loading .boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}
.loading .boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  animation: box1 var(--duration) linear infinite;
}
.loading .boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  animation: box2 var(--duration) linear infinite;
}
.loading .boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  animation: box3 var(--duration) linear infinite;
}
.loading .boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  animation: box4 var(--duration) linear infinite;
}
.loading .boxes .box > div {
  --background: #0F4416;
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translateZ: calc(var(--size) / 2);
  --rotateY: 0deg;
  --rotateX: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}
.loading .boxes .box > div:nth-child(1) {
  --top: 0;
  --left: 0;
}
.loading .boxes .box > div:nth-child(2) {
  --background: #010502;
  --right: 0;
  --rotateY: 90deg;
}
.loading .boxes .box > div:nth-child(3) {
  --background: #0a2f0f;
  --rotateX: -90deg;
}
.loading .boxes .box > div:nth-child(4) {
  --background: #DBE3F4;
  --top: 0;
  --left: 0;
  --translateZ: calc(var(--size) * 3 * -1);
}
@keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}
@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }
  50% {
    transform: translate(200%, 100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}

.section-main {
  background-image: url("./public/bg-cover-d.jpg?v1.0");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: -webkit-image-set(url("./public/bg-cover-d.webp?v1.0") 1x);
  background-size: cover;
  background-position: right;
  background-attachment: fixed;
}
@media screen and (max-width: 992px) {
  .section-main {
    background-image: url("./public/bg-cover-m.jpg?v1.0");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: -webkit-image-set(url("./public/bg-cover-m.webp?v1.0") 1x);
    background-attachment: unset;
  }
}
.section-main::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 30vh;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(244, 246, 249, 0) 0%, rgb(244, 246, 249) 100%);
}
.section-main .logo img {
  height: 100px;
}
@media screen and (max-width: 575px) {
  .section-main .logo img {
    height: 80px;
  }
}
.section-main .content .icon {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 575px) {
  .section-main .content .icon {
    width: 46px;
    height: 46px;
  }
}
@media screen and (max-width: 575px) {
  .section-main .content .icon img {
    width: 46px;
    height: 46px;
  }
}
.section-main .content .icon img.blink {
  left: 0;
  top: 0;
  animation: lightningFlash 2s infinite;
}
.section-main .content .icon-slogan {
  font-size: 0.9rem;
}
.section-main .content h2 {
  font-size: 4rem;
}
@media screen and (max-width: 575px) {
  .section-main .content h2 {
    font-size: 2rem;
  }
}
.section-main .content h3 {
  font-size: 1rem;
  line-height: 1.8rem;
}
@media screen and (max-width: 575px) {
  .section-main .content h3 {
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 575px) {
  .section-main .content .cta {
    margin: 0 auto;
  }
}
.section-main .content .cta img {
  transform: scaleY(-1);
}
@keyframes lightningFlash {
  0%, 100% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  30%, 35% {
    opacity: 0.8;
  }
  40% {
    opacity: 0.4;
  }
  45% {
    opacity: 0;
  }
  70% {
    opacity: 0.2;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.8;
  }
  95% {
    opacity: 0.1;
  }
}
.section-main .mouse {
  position: relative;
  width: 44px;
  height: 68px;
  margin: 0 auto 20px;
  background: none;
  border: 2px solid #0F8320;
  border-radius: 32px;
  z-index: 1;
  bottom: 5%;
  left: 35%;
  right: 35%;
  animation: float 6s ease-in-out infinite;
}
.section-main .mouse::after {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: none;
  border: 2px solid #0F8320;
  border-radius: 100%;
  animation-name: scrollWheel;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  will-change: transform;
}
@keyframes scrollWheel {
  from {
    transform: translate(-50%, 0);
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, 20px);
    transform: translate3d(-50%, 20px, 0);
    opacity: 0;
  }
  @media screen and (max-width: 768px) {
    from {
      transform: translate(-50%, 0);
      transform: translate3d(-50%, 0, 0);
      opacity: 1;
    }
    to {
      transform: translate(-50%, 40px);
      transform: translate3d(-50%, 40px, 0);
      opacity: 0;
    }
  }
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.section-weare {
  padding-top: 80px !important;
}
.section-weare::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(236, 248, 246, 0) 0%, rgb(236, 248, 246) 100%);
  z-index: -1;
}
.section-weare .cover {
  right: -5%;
  top: 15%;
}
@media screen and (max-width: 992px) {
  .section-weare .cover {
    right: -25%;
    top: 20%;
  }
}
@media screen and (max-width: 575px) {
  .section-weare .cover {
    position: relative !important;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .section-weare .cover img {
    height: 500px;
    width: 500px;
  }
}
@media screen and (max-width: 575px) {
  .section-weare .cover img {
    height: 360px;
    width: 360px;
  }
}
@media screen and (max-width: 575px) {
  .section-weare .cover img:not(.abstract) {
    transform: scale(1.1);
  }
}
.section-weare .cover img.abstract {
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  animation: abstractMotion 15s infinite;
  transform: scale(1.05);
}
.section-weare .cover img.abstract2 {
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  animation: abstractMotion2 15s infinite;
  transform: scale(1.1);
}
@keyframes abstractMotion {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  25% {
    transform: translate(45px, -45px) rotate(45deg) scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: translate(-45px, 45px) rotate(90deg) scale(1.05);
    opacity: 0.6;
  }
  75% {
    transform: translate(45px, 45px) rotate(135deg) scale(0.9);
    opacity: 0.4;
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
@keyframes abstractMotion2 {
  0% {
    transform: translate(0, 0) rotate(300deg) scale(1.05);
    opacity: 1;
  }
  25% {
    transform: translate(-25px, 25px) rotate(210deg) scale(1.05);
    opacity: 0.8;
  }
  50% {
    transform: translate(25px, -25px) rotate(120deg) scale(0.9);
    opacity: 0.6;
  }
  75% {
    transform: translate(25px, 25px) rotate(30deg) scale(1.05);
    opacity: 0.4;
  }
  100% {
    transform: translate(0, 0) rotate(300deg) scale(1.05);
    opacity: 1;
  }
}
.section-weare .content {
  z-index: 2;
}
@media screen and (max-width: 575px) {
  .section-weare .content img {
    width: 60px;
    height: 60px;
  }
}
.section-weare .content .title {
  font-size: 2rem;
}
.section-weare .content h1 {
  font-weight: 300;
  line-height: 1.6rem;
}
.section-weare .content .card {
  border-radius: 15px;
}
.section-weare .content .card::before {
  content: " ";
  position: absolute;
  width: 8px;
  height: 80px;
  background-color: #0F8320;
  left: 0;
  top: 15px;
  border-radius: 15px;
}
.section-weare .content .card h4 {
  font-size: 2rem;
}
.section-weare .content .card h4 label {
  font-size: 2rem !important;
}
.section-weare .content .card label {
  font-size: 1.4rem;
  font-family: "Helvetica Neue";
  font-weight: normal;
}
.section-weare .content .card label.text-secondary {
  font-size: 1rem;
  font-weight: 600;
}
.section-weare .content .card label.text-secondary.font-regular {
  font-weight: 400;
}
.section-weare .content .card .seda .logo {
  width: 100px;
}
@media screen and (max-width: 575px) {
  .section-weare .content .card .seda .logo {
    width: 120px;
  }
}
@media screen and (max-width: 575px) {
  .section-weare .content .card .seda .logo img {
    width: 120px;
    height: 120px;
  }
}
.section-weare .content .card .seda .cert {
  width: calc(100% - 100px);
}
@media screen and (max-width: 575px) {
  .section-weare .content .card .seda .cert {
    width: 100%;
  }
}
.section-weare .content .card .seda .cert label {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.1rem;
}
.section-weare .content .card .seda .cert a {
  color: #0F4416;
}
.section-weare .content .card .seda .cert a span {
  font-size: 0.8rem;
}
.section-weare .content .card .seda .cert a:hover {
  text-decoration: underline;
}
.section-whyus {
  padding-top: 80px !important;
}
.section-whyus .title h5 {
  font-size: 2rem;
}
.section-whyus .card label {
  font-size: 1.4rem;
}
.section-whyus .card img {
  animation: heartbeat 1s infinite;
}
@keyframes heartbeat {
  0% {
    transform: scale(0.85);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.85);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(0.85);
  }
}
.section-whysolar {
  padding-top: 80px !important;
}
@media screen and (max-width: 992px) {
  .section-whysolar {
    min-height: unset !important;
  }
}
.section-whysolar::before {
  content: " ";
  position: absolute;
  background-image: url("./public/bg-why-solar-d.jpg?v1.0");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: -webkit-image-set(url("./public/bg-why-solar-d.webp?v1.0") 1x);
  background-size: cover;
  background-position: bottom center;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  z-index: -1;
  bottom: 0;
}
@media screen and (max-width: 575px) {
  .section-whysolar::before {
    background-image: url("./public/bg-why-solar-m.jpg?v1.0");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: -webkit-image-set(url("./public/bg-why-solar-m.webp?v1.0") 1x);
  }
}
.section-whysolar .title {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.section-whysolar .title::before {
  content: " ";
  position: absolute;
  width: 88px;
  height: 8px;
  background-color: #0F8320;
  border-radius: 50px;
  bottom: -8px;
}
.section-whysolar .nav-tabs .nav-item .nav-link {
  background: transparent;
  border: none;
  color: #0F4416;
  opacity: 0.65;
}
.section-whysolar .nav-tabs .nav-item .nav-link.active {
  opacity: 1;
}
.section-whysolar .nav-tabs .nav-item .nav-link:hover {
  opacity: 1;
}
.section-whysolar .tab-content .tab-pane .icon {
  width: 30px;
}
.section-whysolar .tab-content .tab-pane .content {
  width: calc(100% - 30px);
}
@media screen and (max-width: 575px) {
  .section-whysolar .tab-content .tab-pane .content {
    width: 100%;
  }
}
.section-contactus {
  overflow: hidden;
  padding-top: 80px !important;
}
.section-contactus::before {
  content: " ";
  position: absolute;
  background-image: url("./public/bg-contact-d.jpg?v1.0");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: -webkit-image-set(url("./public/bg-contact-d.webp?v1.0") 1x);
  background-size: cover;
  background-position: center;
  transform: scale(1.4);
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 575px) {
  .section-contactus::before {
    background-image: url("./public/bg-contact-m.jpg?v1.0");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: -webkit-image-set(url("./public/bg-contact-m.webp?v1.0") 1x);
    background-size: contain;
    background-position: top center;
    transform: scale(1);
    height: 30vh;
  }
}
.section-contactus::after {
  content: " ";
  position: absolute;
  background: linear-gradient(0deg, rgba(244, 246, 249, 0) 0%, rgb(244, 246, 249) 50%, rgb(244, 246, 249) 100%);
  height: 30vh;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 575px) {
  .section-contactus::after {
    height: 5vh;
  }
}
.section-contactus div.col-xxl-9::after {
  content: " ";
  position: absolute;
  background-image: url("./public/bg-shape-d.png?v1.0");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: -webkit-image-set(url("./public/bg-shape-d.webp?v1.0") 1x);
  height: 600px;
  width: 600px;
  z-index: 1;
  transform: scale(1.5);
  top: 15%;
  right: -10%;
  opacity: 0.8;
}
@media screen and (max-width: 992px) {
  .section-contactus div.col-xxl-9::after {
    bottom: 0;
    top: unset;
    right: 25%;
  }
}
@media screen and (max-width: 575px) {
  .section-contactus div.col-xxl-9::after {
    background-image: url("./public/bg-shape-m.png?v1.0");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: -webkit-image-set(url("./public/bg-shape-m.webp?v1.0") 1x);
    height: 400px;
    width: 400px;
    bottom: 3%;
  }
}
.section-contactus > div::before {
  content: " ";
  position: absolute;
  background: linear-gradient(180deg, rgba(244, 246, 249, 0) 0%, rgb(244, 246, 249) 50%, rgb(244, 246, 249) 100%);
  height: 30vh;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 575px) {
  .section-contactus > div::before {
    bottom: unset;
  }
}
.section-contactus .title {
  z-index: 4;
}
.section-contactus .title h5 {
  font-size: 2.6rem;
}
.section-contactus .title h5::before {
  content: " ";
  position: absolute;
  width: 88px;
  height: 8px;
  background-color: #0F8320;
  border-radius: 50px;
  bottom: -8px;
  left: calc(50% - 44px);
}
.section-contactus .sub-title {
  z-index: 4;
}
.section-contactus form {
  z-index: 4;
}
.section-contactus form label {
  color: #0F8320;
  font-weight: 500;
}
.section-contactus form label.error {
  color: #ff0000;
  font-size: 0.8rem;
  font-weight: 300;
  position: absolute;
  bottom: -25px;
}
@media screen and (max-width: 575px) {
  .section-contactus form label.error {
    font-size: 0.7rem;
  }
}
.section-contactus form input:not(.form-check-input) {
  height: 46px;
}
.section-contactus form textarea {
  resize: none;
}
.section-contactus form input,
.section-contactus form textarea {
  box-shadow: 0 2px 15px 1px rgba(0, 0, 0, 0.2);
  border: none;
  outline: none;
}
.section-contactus form input:focus,
.section-contactus form textarea:focus {
  box-shadow: 0 2px 15px 1px rgba(15, 131, 32, 0.2);
  border: none;
  outline: none;
}
.section-contactus .info {
  z-index: 3;
  color: #ffffff;
}
.section-contactus .info h5 {
  font-size: 2rem;
}
.section-contactus .info > h5,
.section-contactus .info > h6,
.section-contactus .info > div {
  position: relative;
  z-index: 3;
}
.section-contactus .info h6 {
  font-weight: 400;
}
.section-contactus .info a {
  color: #ffffff;
}
.section-contactus .info a:hover {
  text-decoration: underline;
}
.section-contactus .info .icon {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 575px) {
  .section-contactus .info .icon.social img {
    width: 30px;
    height: 30px;
  }
}
.section-contactus .info a,
.section-contactus .info span {
  width: calc(100% - 30px);
}

/*** Header ***/
nav.navbar {
  background-color: #ffffff;
}
nav.navbar .logo {
  width: 190px;
}
nav.navbar .navbar-collapse ul li a:hover {
  color: #0F8320;
}
nav.navbar .navbar-collapse ul li a.active {
  color: #0F8320;
}
nav.navbar .navbar-toggler {
  width: 60px;
  height: 60px;
}

/*** Footer ***/
footer .copyright {
  font-size: 0.8rem;
}

/*** Modal ***/
#certModal .modal-dialog {
  max-width: 600px;
}/*# sourceMappingURL=style.css.map */