@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://pro.fontawesome.com/releases/v5.10.0/css/all.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
* {
  font-family: "DM Sans", serif;
}

/* Navbar customizations */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 10;
  background-color: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 40px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Center-align menu items */
.navbar-nav {
  margin: 0 auto;
}

#navbarNav .btn-primary {
  padding-left: 15px;
  padding-right: 15px;
  background-color: #2cb207;
  border-color: #2cb207;
  color: #ffffff;
}
#navbarNav .btn-primary i {
  font-size: 18px;
}

/* Hover border bottom animation */
.nav-link {
  position: relative;
  color: #000000;
  transition: color 0.3s ease;
  font-size: 14px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #0c50ec;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-link:hover {
  color: #0c50ec;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

/* Dropdown menu left slide animation */
.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Nested dropdown styling */
.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
}

.dropdown:hover .dropdown-menu .dropdown-menu {
  display: none;
}

.dropdown-item {
  font-size: 14px;
  border-bottom: solid 1px #ccc;
  padding-top: 8px;
  padding-bottom: 8px;
}

.dropdown-menu > .dropdown:hover > .dropdown-menu {
  display: block;
}

#heroCarousel.carousel {
  position: relative;
}
#heroCarousel.carousel .happycustomerwrap {
  position: absolute;
  bottom: 15px;
  right: 30px;
  display: flex;
  transition: all 0.4s ease-in-out;
}
#heroCarousel.carousel .happycustomerwrap .happycustitem {
  width: 230px;
  height: 240px;
  background-color: #ffffff;
  border-radius: 10px;
  margin-right: 15px;
  padding: 15px;
}
#heroCarousel.carousel .happycustomerwrap .happycustitem h3 {
  font-size: 1rem;
  text-align: center;
}
#heroCarousel.carousel .happycustomerwrap .happycustitem h2 {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 600;
}
#heroCarousel.carousel .happycustomerwrap .happycustitem .divider {
  height: 1px;
  background-color: #977805;
}
#heroCarousel.carousel .happycustomerwrap .happycustitem p {
  font-size: 0.875rem;
  text-align: center;
  padding-top: 15px;
}
#heroCarousel.carousel .happycustomerwrap.show {
  right: 30px;
}

/* Carousel height */
.carousel-item img {
  height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.navbar-nav .nav-link.active {
  color: #0c50ec;
  border-bottom: solid 2px #0c50ec;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: transparent;
  transition: width 0.3s ease, left 0.3s ease;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: #2cb207;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: #0c50ec;
  color: #ffffff;
}

/* Hide the dropdown arrow */
.dropdown-toggle::after {
  display: none;
}

.btn-primary {
  background-color: #2cb207;
  border-color: #2cb207;
  border-radius: 30px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 5px;
  padding-left: 15px;
}
.btn-primary i {
  font-size: 2rem;
  padding-bottom: 0;
  line-height: 0;
}

.carousel-item {
  position: relative;
}
.carousel-item .carousel-caption {
  top: 25% !important;
  left: 3% !important;
  text-align: left !important;
}
.carousel-item .carousel-caption h1 {
  font-size: 3.5rem !important;
  font-weight: 900;
  width: 60%;
  text-transform: capitalize;
}
.carousel-item .carousel-caption p {
  width: 50%;
  font-weight: 300;
}
.carousel-item .carousel-caption a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  color: #000000;
}
.carousel-item .carousel-caption a.btn-light {
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.carousel-item .carousel-caption a.btn-light i {
  font-size: 30px;
  margin-left: 10px;
}

section.default-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.border-radius-25 {
  border-radius: 25px;
}

.about-section .visionconthome {
  background-color: #e5f2fd;
  padding: 20px;
  border-radius: 5px;
  border: solid 3px #85c1f3;
}
.about-section .visionconthome .visionhead h5 {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 500;
}
.about-section .visionconthome .iconwraphome {
  width: 40px;
  height: 40px;
  background-color: #0c50ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.about-section .aboutconthom h2 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 30px;
}
.about-section .aboutconthom h2 span {
  font-size: 3.5rem;
  color: #0c50ec;
}
.about-section .aboutconthom p {
  line-height: 30px;
}

.service-section.service-bg {
  background-image: url("../images/service-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.service-section .servheadcont .servicecontwrap h2 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.service-section .servheadcont .servicecontwrap h2 span {
  color: #fdca08;
}
.service-section .servheadcont .servicecontwrap p {
  color: #ffffff;
  font-weight: 200;
}
.service-section .servicebtnwrap .btn-primary {
  background-color: #fdca08;
  color: #0c50ec;
  border-color: #fdca08;
}
.service-section .servicebtnwrap .btn-primary:hover {
  background-color: #0c50ec;
  color: #ffffff;
}
.service-section .carditemwrap {
  padding-top: 50px;
}
.service-section .carditemwrap .card {
  padding: 20px;
  background-color: #0436b3;
}
.service-section .carditemwrap .card .card-body .card-title {
  color: #fdca08;
}
.service-section .carditemwrap .card .card-body .card-text {
  color: #ffffff;
  font-weight: 200;
}
.service-section .carditemwrap .card .card-body .btn-primary {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.service-section .carditemwrap .card .card-body .btn-primary i {
  color: #fdca08;
}
.service-section .carditemwrap .card .card-body .btn-primary:hover {
  background-color: transparent;
  border-color: transparent;
  color: #2cb207;
}
.service-section .carditemwrap .card .card-body .btn-primary:hover i {
  color: #ffffff;
}
.service-section .carditemwrap .card .cardimagewrap {
  width: 100%;
  height: 400px;
}
.service-section .carditemwrap .card .cardimagewrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.choose-section {
  background-image: url("../images/bg-choose.jpg");
}
.choose-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
.choose-section h2 span {
  color: #0c50ec;
}
.choose-section .card {
  border: none;
  margin-bottom: 1rem;
}
.choose-section .card-body {
  padding-bottom: 2rem;
}
.choose-section .card-body .icon-container {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background-color: #2cb207;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
}
.choose-section .card-title,
.choose-section .card-text {
  text-align: left;
}
.choose-section .card-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.choose-section.wave-bg {
  background-image: url("../images/wave.svg");
  background-repeat: no-repeat;
  background-position: bottom;
}

.faqtesti-section .testi-bg {
  background-image: url("../images/testi-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faqtesti-section .testi-bg .testimonial-carousel .quoteicon {
  width: 66px;
  height: 84px;
}
.faqtesti-section .testi-bg .testimonial-carousel h3 {
  font-size: 2rem;
  color: #ffffff;
  padding-bottom: 20px;
}
.faqtesti-section .testi-bg .testimonial-carousel p {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 30px;
  width: 75%;
  margin: 0 auto;
}
.faqtesti-section .testi-bg .testimonial-carousel .prevnextwrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.faqtesti-section .testi-bg .testimonial-carousel .prevnextwrap .prev, .faqtesti-section .testi-bg .testimonial-carousel .prevnextwrap .next {
  background-color: #2cb207;
  color: #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  font-size: 20px;
  cursor: pointer;
}
.faqtesti-section .faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.faqtesti-section .faq-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
}
.faqtesti-section .faq-section h3 span {
  color: #0c50ec;
}
.faqtesti-section .faq-section p {
  padding-left: 20px;
  padding-right: 20px;
}
.faqtesti-section .faq-section .accordion-button {
  border-radius: 0 !important; /* Remove rounded corners */
  font-weight: 700;
}
.faqtesti-section .faq-section .accordion-button:focus {
  box-shadow: none !important; /* Remove the blue shadow on focus */
  outline: none !important; /* Remove the outline */
}
.faqtesti-section .faq-section .accordion-button:not(.collapsed) {
  border-radius: 0 !important; /* Remove rounded corners when open */
  color: #0c50ec;
  font-weight: 700;
  background-color: transparent;
  border-bottom: solid 1px #ccc;
}
.faqtesti-section .faq-section .accordion-item:first-of-type {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.faqtesti-section .faq-section .accordion-item:last-of-type {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

footer {
  background-image: url("../images/blob-scatter-haikei.png");
  background-repeat: no-repeat;
  background-color: #0c50ec;
  background-size: cover;
  color: #ffffff;
  padding: 60px 0 30px 0;
}

.footer-column .footercontactwrap {
  display: flex;
  flex-direction: column;
}
.footer-column .footercontactwrap a {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  font-size: 1rem;
}

footer h5 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

footer h6 {
  font-size: 0.825rem;
  text-transform: uppercase;
}

footer li {
  padding-bottom: 10px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.875rem;
  font-weight: 300;
}
footer a:hover {
  text-decoration: underline;
}

footer a:hover {
  color: #ffffff;
}

.social-icons a {
  font-size: 2rem;
  margin-right: 15px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
}

.wavebgwrap {
  width: 100%;
  height: 200px;
}

.wavebg {
  background-image: url("../images/layered-waves-haikei.png");
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .footer-column {
    text-align: center;
    margin-bottom: 30px;
  }
  .social-icons {
    text-align: center;
  }
  .service-list li {
    display: block;
    margin-right: 0;
  }
  .footer-column .footercontactwrap a {
    justify-content: center;
  }
}
.width-fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.dropdown.width-fit-content .dropdown-menu .dropdown-item:hover {
  background-color: #fdca08;
  color: #000000;
}

.shadow-all-sides {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 -4px 6px rgba(0, 0, 0, 0.1), 4px 0 6px rgba(0, 0, 0, 0.1), -4px 0 6px rgba(0, 0, 0, 0.1);
}

.bg-light-blue {
  background-color: #e5f2fd;
}

.max-w-75 {
  max-width: 75%;
}

.titledescript {
  max-width: 75%;
  margin: 0 auto;
  padding-bottom: 70px;
}

.aboutus-section {
  height: 400px;
  background-color: #0c50ec;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.aboutus-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.aboutus-section.aboutus-bg {
  background-image: url("../images/about-yourja-mitra.jpg");
}
.aboutus-section.contact-bg {
  background-image: url("../images/contact-bg.jpg");
}
.aboutus-section.ongrid-home-bg {
  background-image: url("../images/on-grid-solar-systems-for-home.jpg");
  background-position: -350px -400px;
}
.aboutus-section.offgrid-home-bg {
  background-image: url("../images/off-grid-solar-systems-for-home.png");
  background-position: -350px -200px;
}
.aboutus-section.hybrid-home-bg {
  background-image: url("../images/hybrid-solar-systems-for-residential.jpg");
  background-position: -350px -200px;
}
.aboutus-section.ongrid-business-bg {
  background-image: url("../images/on-grid-solar-panels-for-commercial-business.png");
  background-position: -350px -200px;
}
.aboutus-section.offgrid-business-bg {
  background-image: url("../images/off-grid-solar-panels-for-commercial-business.png");
  background-position: -350px -200px;
}
.aboutus-section.hybrid-business-bg {
  background-image: url("../images/hybrid-solar-systems-for-business.jpg");
  background-position: -350px -200px;
}
.aboutus-section.ongrid-industries-bg {
  background-image: url("../images/on-grid-solar-panels-for-industries.png");
  background-position: -350px -200px;
}
.aboutus-section.offgrid-industries-bg {
  background-image: url("../images/off-grid-solar-panels-for-industries.png");
  background-position: -350px -200px;
}
.aboutus-section.submersible-bg {
  background-image: url("../images/solar-submersible-pumps.png");
  background-position: 0px -400px;
}
.aboutus-section.solarinverter-bg {
  background-image: url("../images/solar-panels-invert.png");
  background-position: 0px -400px;
}
.aboutus-section.solarricemills-bg {
  background-image: url("../images/solar-panels-for-rice-mills.png");
  background-position: 0px -100px;
}
.aboutus-section.streetlights-bg {
  background-image: url("../images/solar-panels-for-street-lights.png");
  background-position: 0px -300px;
}
.aboutus-section.financial-bg {
  background-image: url("../images/financial.png");
}
.aboutus-section h1 {
  padding-top: 120px;
  color: #ffffff;
  z-index: 1;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
}
.aboutus-section h1 span {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 900;
  z-index: 1;
  text-transform: uppercase;
  display: block;
}

.aboutus-inner .aboutcontabout h2 {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 30px;
}
.aboutus-inner .aboutcontabout h2 span {
  font-size: 3rem;
  color: #0c50ec;
  display: block;
  font-weight: bold;
}
.aboutus-inner .aboutcontabout p {
  line-height: 30px;
}

.bg-house-solar-panel {
  background-image: url("../images/house-with-solar-pannels.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.bg-house-solar-panel .container.bg-container-yellow {
  border-radius: 30px;
  background-color: #2cb207;
  padding: 60px 40px 60px 40px;
}

.whatwedosection .whatwedotit h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}
.whatwedosection .whatwedotit h2 span {
  color: #ffffff;
  display: block;
  font-size: 3.5rem;
  padding-bottom: 50px;
  font-weight: 900;
}
.whatwedosection .whatwedodes p {
  width: 80%;
  padding-left: 20px;
  color: #ffffff;
  padding-left: 45px;
}
.whatwedosection .card {
  background-color: transparent;
  border: none;
  padding-left: 0;
}
.whatwedosection .card .card-title {
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  padding-left: 30px;
}
.whatwedosection .card .card-title span {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
}
.whatwedosection .card .card-text {
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  width: 80%;
  padding-left: 30px;
}
.whatwedosection .proudtext {
  padding-left: 45px;
  padding-top: 30px;
  width: 80%;
  color: #ffffff;
  font-weight: 300;
}

.vismis-section .card {
  border: none;
}
.vismis-section .icon {
  font-size: 2rem;
  color: #0c50ec;
}
.vismis-section .section-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.vismis-section .card-body p {
  font-size: 1.1rem;
}
.vismis-section .visionimagewrap {
  width: 100%;
  height: 300px;
  background-color: #2cb207;
  border-radius: 10px;
  margin-top: 10px;
  background-image: url("../images/solar-panel-installation.jpg");
  background-repeat: no-repeat;
  background-position: center center;
}
.vismis-section .missionwrap img {
  border-radius: 10px;
  height: 150px;
  width: 100%;
  margin-bottom: 30px;
}
.vismis-section .mission-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.vismis-section .mission-list li {
  padding-bottom: 10px;
  display: flex;
  align-items: self-start;
  padding-left: 20px;
}
.vismis-section .mission-list li i {
  margin-right: 15px;
  font-size: 24px;
  color: #2cb207;
}

.joinus-section h3 {
  font-size: 1.5rem;
  color: #000000;
}
.joinus-section h3 span {
  font-size: 2.5rem;
  display: block;
  color: #0c50ec;
  font-weight: 900;
  padding-bottom: 40px;
}

.asterisk-bg {
  background-image: url("../images/asterisk-bg.png");
  background-repeat: no-repeat;
  background-position: right 100px top -175px;
}

.contact-section .container.bg-container-yellow {
  border-radius: 30px;
  background-color: #2cb207;
  padding: 60px 40px 60px 40px;
}
.contact-section .contact-info {
  margin-bottom: 20px;
  width: 65%;
}
.contact-section .contact-info h3 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 200;
  padding-bottom: 20px;
}
.contact-section .contact-info h3 span {
  font-size: 2.5rem;
  color: #ffffff;
  display: block;
  font-weight: 900;
}
.contact-section .contact-info-card {
  width: 65%;
  /* Styling for the cards */
  /* Card hover effect */
}
@keyframes iconWobble {
  0%, 100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(3deg);
  }
  60% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.contact-section .contact-info-card .animated-icon {
  animation: iconWobble 2s ease-in-out infinite; /* Infinite wobbling effect */
}
.contact-section .contact-info-card .card {
  text-align: left;
  margin-bottom: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.contact-section .contact-info-card .card-body i {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fdca08;
}
.contact-section .contact-info-card .card-title {
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
}
.contact-section .contact-info-card .card-text {
  color: #ffffff;
  font-weight: 200;
}
.contact-section .contact-info-card .card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.contact-section .contact-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: -4px -2px 12px #1b6e03;
}
.contact-section .contact-form h3 {
  font-size: 2rem;
  color: #0c50ec;
  font-weight: 900;
}
.contact-section .form-control {
  border-radius: 0;
  border-color: #837f7f;
}

.btn-secondary {
  border-radius: 30px;
  background-color: #0c50ec;
  border-color: #0c50ec;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 5px 5px 15px;
}
.btn-secondary i {
  font-size: 2em;
  line-height: 0;
  padding-bottom: 0;
}
.btn-secondary:hover {
  background-color: #2cb207;
  border-color: #2cb207;
}

.ongid-home-section .solarimagewrap {
  width: 100%;
  height: 500px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  align-items: center;
}
.ongid-home-section .contentwrap h2 {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 900;
  padding-top: 80px;
  padding-bottom: 20px;
}

.howitworks-section .contentwrap h2 {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 900;
  padding-top: 80px;
  padding-bottom: 20px;
  padding-left: 30px;
}
.howitworks-section .contentwrap h3 {
  font-size: 2rem;
  color: #000000;
  font-weight: 900;
  padding-top: 80px;
  padding-bottom: 20px;
  padding-left: 30px;
}
.howitworks-section .contentwrap p {
  padding-left: 30px;
}
.howitworks-section .contentwrap .btnwrap {
  padding-left: 30px;
}
.howitworks-section .contentwrap .solarplaceholder {
  width: 100%;
  height: 300px;
  background-color: #2cb207;
  border-radius: 20px;
  margin-bottom: 30px;
  margin-left: 30px;
  background-image: url("../images/rooftop-financial.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.howitworks-section .contentwrap .solarplaceholdersubsidy {
  width: 100%;
  height: 150px;
  background-color: #2cb207;
  border-radius: 20px;
  margin-bottom: 30px;
  margin-left: 30px;
  background-image: url("../images/solar-panels-success-project.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.howitworks-section .contentwrap .solarplaceholderricemill {
  width: 100%;
  height: 400px;
  background-color: #2cb207;
  border-radius: 20px;
  margin-bottom: 30px;
  margin-left: 30px;
  background-image: url("../images/solar-panels-for-rice-mills-keys.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.howitworks-section .contentwrap .solarplaceholderstreet {
  width: 100%;
  height: 300px;
  background-color: #2cb207;
  border-radius: 20px;
  margin-bottom: 30px;
  margin-left: 30px;
  background-image: url("../images/solar-panels-for-street-lights-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -60px;
}
.howitworks-section .contentwrap ul {
  list-style: none;
  padding-left: 30px;
  margin: 0;
}
.howitworks-section .contentwrap ul li {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
}
.howitworks-section .contentwrap ul li .iconwrp {
  width: 50px;
  height: 50px;
  background-color: #e5f2fd;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.howitworks-section .contentwrap ul li .iconwrp i {
  color: #0c50ec;
  font-size: 1.5rem;
}
.howitworks-section .contentwrap ul li .benetitwrap {
  width: 75%;
}
.howitworks-section .contentwrap ul li .benetitwrap .benetit {
  font-size: 1.2rem;
  font-weight: 900;
}
.howitworks-section .contentwrap ul.choose-list li {
  padding-bottom: 15px !important;
}
.howitworks-section .contentwrap ul.choose-list li i {
  font-size: 1.5rem !important;
  color: #0c50ec !important;
  margin-right: 10px !important;
}
.howitworks-section .contentwrap h4 {
  padding-left: 30px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 20px;
  padding-top: 20px;
}
.howitworks-section .contentwrap .contentheadlistwrap h3 {
  font-size: 1.5rem;
  color: #0c50ec;
}
.howitworks-section .contentwrap .contentheadlistwrap h6 {
  font-size: 1.5rem;
  padding-left: 30px;
  font-weight: 600;
}
.howitworks-section .contentwrap .contentheadlistwrap ul.advant-list li {
  padding-bottom: 15px;
}
.howitworks-section .contentwrap .contentheadlistwrap ul.advant-list li i {
  font-size: 1.5rem !important;
  color: #2cb207;
  margin-right: 10px;
}
.howitworks-section .contentwrap .contentheadlistwrap ul {
  margin: 0;
  padding-left: 30px;
}
.howitworks-section .contentwrap .contentheadlistwrap ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
.howitworks-section .contentwrap .contentheadlistwrap ul li i {
  font-size: 2rem;
}
.howitworks-section .insuranwrap h3 {
  font-size: 2.5em;
  color: #000000;
  font-weight: 900;
  padding-bottom: 30px;
}
.howitworks-section .insuranwrap .mission-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.howitworks-section .insuranwrap .mission-list li {
  padding-bottom: 10px;
  display: flex;
  align-items: self-start;
  padding-bottom: 20px;
}
.howitworks-section .insuranwrap .mission-list li i {
  margin-right: 15px;
  font-size: 2rem;
  color: #2cb207;
}

.benefits-section .benefitscontwrap h3 {
  font-size: 2.5em;
  color: #000000;
  font-weight: 900;
  padding-bottom: 30px;
}
.benefits-section .benefitscontwrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-section .benefitscontwrap ul li {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
}
.benefits-section .benefitscontwrap ul li .iconwrp {
  width: 50px;
  height: 50px;
  background-color: #e5f2fd;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-section .benefitscontwrap ul li .iconwrp i {
  color: #0c50ec;
  font-size: 1.5rem;
}
.benefits-section .benefitscontwrap ul li .benetitwrap {
  width: 75%;
}
.benefits-section .benefitscontwrap ul li .benetitwrap .benetit {
  font-size: 1.2rem;
  font-weight: 900;
}
.benefits-section .successprojwrap .successprojimg img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.benefits-section .successprojwrap .successprojnumb, .benefits-section .successprojwrap .upcomgprojnumb {
  padding: 10px 20px 10px 20px;
  width: 100%;
  height: 220px;
  border-radius: 10px;
  background-color: #0c50ec;
}
.benefits-section .successprojwrap .successprojnumb h2, .benefits-section .successprojwrap .upcomgprojnumb h2 {
  font-size: 0.875rem;
  color: #ffffff;
  text-align: center;
  font-weight: 300;
  padding: 7px;
  background-color: #0b4ce3;
  border-radius: 10px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.benefits-section .successprojwrap .successprojnumb h3, .benefits-section .successprojwrap .upcomgprojnumb h3 {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding-bottom: 10px;
  letter-spacing: 4px;
}
.benefits-section .successprojwrap .successprojnumb p, .benefits-section .successprojwrap .upcomgprojnumb p {
  font-size: 0.875rem;
  text-align: center;
  color: #ffffff;
  font-weight: 200;
}
.benefits-section .successprojwrap .upcomgprojnumb {
  background-color: #2cb207;
}
.benefits-section .successprojwrap .upcomgprojnumb h2 {
  background-color: #2eb908;
}
.benefits-section .successprojwrap .insuranwrap h3 {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 900;
  padding-bottom: 10px;
  padding-left: 20px;
}
.benefits-section .successprojwrap .insuranwrap p {
  font-size: 1rem;
}
.benefits-section .successprojwrap .insuranwrap .mission-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.benefits-section .successprojwrap .insuranwrap .mission-list li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.benefits-section .successprojwrap .insuranwrap .mission-list li i {
  margin-right: 15px;
  font-size: 24px;
  color: #2cb207;
}

.whyyourja-section .insuranwrap h3 {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 900;
  padding-bottom: 10px;
  padding-left: 20px;
}
.whyyourja-section .insuranwrap p {
  font-size: 1rem;
}
.whyyourja-section .insuranwrap p.pl-30 {
  padding-left: 30px;
}
.whyyourja-section .insuranwrap .mission-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.whyyourja-section .insuranwrap .mission-list li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.whyyourja-section .insuranwrap .mission-list li i {
  margin-right: 15px;
  font-size: 24px;
  color: #2cb207;
}

.primary-compo .contentwrap {
  padding-left: 30px;
}
.primary-compo .contentwrap h2 {
  font-size: 2.5em;
  color: #000000;
  font-weight: 900;
  padding-bottom: 30px;
  padding-top: 30px;
}
.primary-compo .contentwrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-compo .contentwrap ul li {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
}
.primary-compo .contentwrap ul li .iconwrp {
  width: 50px;
  height: 50px;
  background-color: #e5f2fd;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.primary-compo .contentwrap ul li .iconwrp i {
  color: #0c50ec;
  font-size: 1.5rem;
}
.primary-compo .contentwrap ul li .benetitwrap {
  width: 75%;
}
.primary-compo .contentwrap ul li .benetitwrap .benetit {
  font-size: 1.2rem;
  font-weight: 900;
}

.modal-body .form-control {
  border-radius: 0;
  height: 40px;
  border-color: #bdb9b9;
}
.modal-body .text-area {
  border-radius: 0;
  border-color: #bdb9b9;
  width: 100%;
  text-indent: 10px;
}

.font-16 {
  font-size: 16px !important;
}

.font-24 {
  font-size: 24px !important;
}

@media only screen and (min-width: 300px) and (max-width: 600px) {
  .carousel-item img {
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .default-padding {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .about-section .aboutconthom h2 {
    font-size: 1.5rem;
    padding-bottom: 15px;
  }
  .about-section .aboutconthom h2 span {
    font-size: 2.5rem;
    display: block;
  }
  .m-w-100 {
    width: 100% !important;
  }
  .m-px-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .faqtesti-section .testi-bg {
    height: auto;
    padding: 40px 0;
  }
  .whatwedosection .whatwedotit h2 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
  }
  .whatwedosection .whatwedotit h2 span {
    font-size: 2.5rem;
    padding-bottom: 30px;
    font-weight: 900;
  }
  .whatwedosection .whatwedodes p {
    padding-left: 0;
    width: 100%;
    padding-bottom: 20px;
  }
  .whatwedosection .card {
    padding-left: 0;
  }
  .whatwedosection .card .card-title, .whatwedosection .card .card-text {
    padding-left: 0;
    width: 100%;
  }
  .whatwedosection .proudtext {
    padding-left: 0;
    width: 100%;
  }
  .asterisk-bg {
    background-image: none;
  }
  .contact-section .container.bg-container-yellow {
    padding: 30px 20px 30px 20px;
  }
  .contact-section .contact-info, .contact-section .contact-info-card {
    width: 100%;
  }
  .contact-section .contact-form {
    padding: 15px;
  }
  .ongid-home-section .solarimagewrap {
    height: auto;
    padding: 0;
  }
  .ongid-home-section .contentwrap h2 {
    padding-top: 0;
    font-size: 2rem;
  }
  .howitworks-section .contentwrap h2 {
    font-size: 2rem;
    padding-left: 0px;
  }
  .howitworks-section .contentwrap p {
    padding-left: 0;
  }
  .howitworks-section .contentwrap .solarplaceholder, .howitworks-section .contentwrap .solarplaceholdersubsidy, .howitworks-section .contentwrap .solarplaceholderricemill {
    margin-left: 0;
    height: 150px;
  }
  .howitworks-section .contentwrap .contentheadlistwrap h6 {
    padding-left: 0;
  }
  .howitworks-section .insuranwrap h3 {
    font-size: 2rem;
    padding-left: 20px;
  }
  .benefits-section .benefitscontwrap h3 {
    padding-left: 30px;
    font-size: 2rem;
  }
  .primary-compo .contentwrap h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1280px) {
  .about-section .aboutconthom h2 {
    font-size: 2rem;
  }
  .about-section .aboutconthom h2 span {
    display: block;
    font-size: 3rem;
  }
  .about-section .aboutconthom p span {
    display: none;
  }
  .aboutus-inner .aboutcontabout h2 {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
  .aboutus-inner .aboutcontabout h2 span {
    font-size: 2rem;
    font-weight: 900;
  }
  .whatwedosection .whatwedotit h2 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
  }
  .whatwedosection .whatwedotit h2 span {
    font-size: 2.5rem;
    padding-bottom: 30px;
    font-weight: 900;
  }
  .whatwedosection .whatwedodes p {
    padding-left: 30px;
    width: 100%;
    padding-bottom: 10px;
  }
  .whatwedosection .card {
    padding-left: 0;
  }
  .whatwedosection .card .card-title, .whatwedosection .card .card-text {
    padding-left: 10px;
    width: 100%;
  }
  .whatwedosection .proudtext {
    padding-left: 30px;
    width: 100%;
    padding-top: 10px;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1366px) {
  .about-section .aboutconthom h2 {
    font-size: 2rem;
  }
  .about-section .aboutconthom h2 span {
    display: block;
    font-size: 3rem;
  }
  .about-section .aboutconthom p span {
    display: none;
  }
  .aboutus-inner .aboutcontabout h2 {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
  .aboutus-inner .aboutcontabout h2 span {
    font-size: 2rem;
    font-weight: 900;
  }
  .whatwedosection .whatwedotit h2 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
  }
  .whatwedosection .whatwedotit h2 span {
    font-size: 2.5rem;
    padding-bottom: 30px;
    font-weight: 900;
  }
  .whatwedosection .whatwedodes p {
    padding-left: 30px;
    width: 100%;
    padding-bottom: 10px;
  }
  .whatwedosection .card {
    padding-left: 0;
  }
  .whatwedosection .card .card-title, .whatwedosection .card .card-text {
    padding-left: 10px;
    width: 100%;
  }
  .whatwedosection .proudtext {
    padding-left: 30px;
    width: 100%;
    padding-top: 10px;
  }
}/*# sourceMappingURL=front-end.css.map */