/* FONT IMPORT */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* ROOT VARIABLES */
:root {
  --var-main-font: "Poppins";
  --var-text-color: #555;
  --var-white-color: #fff;
  --var-primary-color: #003566;
  --var-accent-color: #b50d0d;
}

/* GENERAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--var-main-font), sans-serif;
  position: relative;
  overflow-x: hidden !important;
}
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}
a,
button {
  text-decoration: none !important;

  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;

  color: #fff;
  font-weight: 600;
  background: var(--var-accent-color);
  padding: 1rem 1.6rem;
  border: none;
  border-radius: 12px;
  align-items: center;
  justify-content: center;

  position: relative;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.theme-btn:hover {
  color: #fff;
  box-shadow: 0 12px 28px rgba(181, 13, 13, 0.25);
  transform: translateY(-8px);
}

/* GENERAL */
.section {
  padding: 5rem 0;
}
.section-intro h4 {
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}
.section-intro h4::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -70px;
  content: "";
  width: 60px;
  height: 4px;
  background: var(--var-accent-color);
}
.section-intro h2 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: capitalize;
}
/* GENERAL */

/* PRELOADER */
/* PRELOADER */

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.5rem 0;
  transition: all 0.3s;
  background:white !important;
}
.header.sticky {
  padding: 0.5rem 0;
  background: #fff;
  filter: drop-shadow(0px 12px 12px rgba(37, 37, 37, 0.2));
}
.navbar-brand img {
  width: 70%;
  transition: all 0.3s;
}
.header.sticky .navbar-brand img {
  width: 50%;
}
.navbar-nav {
  align-items: center;
  gap: 1rem;
}
.navbar-nav .nav-item a {
  color: #000;
  position: relative;
}
.navbar-nav .nav-item a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 4px;
  background-color: var(--var-accent-color);
  transition: all 0.3s;
}
.navbar-nav .nav-item.active a::before,
.navbar-nav .nav-item a:hover::before {
  width: 100%;
}
.navbar-nav .theme-btn {
  padding: 0.8rem 2rem;
}
.navbar-nav .theme-btn:hover {
  transform: translateY(0);
}
/* HEADER */

/* SECTION: MAIN */
.section--main {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/main-bg1.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
#vid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.25)
  );
  z-index: -1;
}
@media (max-width: 750px) {
  #background-video {
    display: none;
  }
  body {
    background: url("../img/video-img.png") no-repeat;
    background-size: cover;
  }
}
.main-content h1 {
  font-size: 7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.main-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--var-accent-color);
  text-transform: capitalize;
  margin-bottom: 1.2rem;
}
.main-content p {
  font-size: 1.2rem;
  font-weight: 500;
}
/* SECTION: MAIN */

/* SECTION: INNER MAIN */
.section--inner-main {
  position: relative;
  z-index: 1;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/inner-main-bg.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color:#fff;
}


.section0.section--inner-main {
    background-position: center;
}


.test-section--inner {
   
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.test-section--inner {
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.inner-main-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.inner-main-content h3 {
  font-size: 1.5rem;
}
.inner-main-content h3 b {
  color: var(--var-accent-color);
}
/* SECTION: INNER MAIN */

/* SECTION: ABOUT */
.section--about {
  background: url(../img/about-bg.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 10rem;
  position: relative;
  height: 900px;
}
.about-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50%;
}
.white-box {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.5)
  );
  padding: 4rem;
  border-radius: 20px 0 0 20px;
}
.about-inner {
  width: 60%;
}
/* SECTION: ABOUT */

/* SECTION: SERVICES */
.section--services {
  background: #363837;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  margin-top: -6rem;
  padding: 10rem 0;
  color: #fff;
}
.service-card {
  padding: 3rem;
  margin-bottom: 3rem;
  border-radius: 20px;
  background: #fff;
  color: #000;
  text-align: center;
  transition: all 0.3s;
}
.service-card img {
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.service-card p {
  font-size: 0.8rem;
}
.rm-link {
  font-weight: 600;
  color: var(--var-accent-color);
}
.service-card:hover {
  box-shadow: inset 0 0 0 10px var(--var-accent-color);
}
/* SECTION: SERVICES */

/* SECTION: PROJECTS */
.section--projects .section-intro h2 {
  margin-bottom: 0;
}
.project-card {
  margin: 1rem;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #8f8f8f;
  transition: all 0.3s;
}
.project-card-content {
  padding: 1.2rem;
  background: #fff;
}
.project-card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.project-card-content h5 {
  font-size: 1rem;
}
.project-card-content .rm-link {
  display: block;
  margin-top: 2rem;
}
.project-card:hover {
  transform: translateY(-10px);
}
.projects-slider .slick-list {
  padding: 2rem 0;
}
/* SECTION: PROJECTS */

/* SECTION: CTA */
.section--cta {
  background: #363837;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  padding: 10rem 0;
}
.cta-intro h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: capitalize;
}
.cta-intro p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.bulb-img {
  position: absolute;
  bottom: -70px;
  right: 50px;
}
/* SECTION: CTA */

/* SECTION: MANUFACTURING */
.section--manufacturing {
  padding-top: 10rem;
}
.manu-slider figure {
  margin: 1rem;
  overflow: hidden;
  transition: all 0.5s;
}
.manu-slider img {
  transition: all 0.5s;
}
.manu-slider figure:hover {
  border-radius: 20px;
}
.manu-slider figure:hover img {
  transform: scale(1.3);
}
/* SECTION: MANUFACTURING */

/* LINE BREAK */
.line-break hr {
  border: 1px solid #8e8c8c;
}
/* LINE BREAK */

/* SECTION: COMPANY */
.section--company {
  position: relative;
}
.solar-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* SECTION: COMPANY */

/* SECTION: CONTACT */
.section--contact {
  background: #e7e7e7;
  padding-bottom: 15rem;
}
.contact-form {
  padding: 5rem 3rem;
  background: #fff;
  border-radius: 20px;
}
.contact-form .form-control {
  margin-bottom: 1rem;
  padding: 1.5rem 1rem;
}
.form-control.tt {
  margin-bottom: 2rem;
}
.contact-form .theme-btn {
  display: block;
  width: 90%;
  background: #474747;
  margin: 0 auto;
  transition: all 0.3s;
}

.accordion .card {
  margin-bottom: 1.5rem;
}
.card-header {
  background: #d0d0d0;
  padding: 1.5rem;
}
.card-header h2 {
  font-size: 1.2rem;
}
.faq-btn {
  background: none;
  border: none;
  font-weight: 600;
}
/* SECTION: CONTACT */

/* SECTION: ENERGY */
.section--energy {
  background: #363837;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 6rem 0;
  margin-top: 0rem;
  position: relative;
}
.energy-img {
  position: absolute;
  top: 50%;
  margin-right:30px;
  transform: translateY(-50%);
  right: 0;
  width: 35%;
}
/* SECTION: ENERGY */

/* SECTION: SERVICE MAIN */
.service-card.main {
  background: #e5e4e4;
}
.service-card.main:hover {
  background: #fff;
}
/* SECTION: SERVICE MAIN */

/* SECTION: CONTACT MAIN */
.section--contact-main {
  background: #e7e7e7;
  padding: 20rem 0;
  margin-top: -10rem;
}
.contact-info {
  background: #636363;
  padding: 3rem 2rem;
  border-radius: 24px 0 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-info ul li a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #fff;
}
.contact-info ul li a i {
  background: var(--var-accent-color);
  padding: 1rem 1.8rem;
  font-size: 1.5rem;
  border-radius: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form.main {
  border-radius: 0 20px 20px 0;
}
/* SECTION: CONTACT MAIN */

/* FOOTER */
.footer {
  background: #363837;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: #fff;
  padding: 6rem 0 1rem 0;
  margin-top: -10rem;
  position: relative;
  z-index: 2;
}
.footer-logo {
  margin-bottom: 2rem;
  display: block;
}
.footer-text {
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}
.footer-social {
  margin-top: 1.2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer-social li a {
  font-size: 1.2rem;
  background: #fff;
  padding: 0.5rem 0.6rem;
  border-radius: 100%;
  color: var(--var-accent-color);
}
.footer-social li a:hover {
  color: #fff;
  background: var(--var-accent-color);
}
.footer-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links li a i {
  color: #fff;
  background: var(--var-accent-color);
  padding: 0.5rem 1rem;
  border-radius: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form--newsletter {
  margin-top: 1.5rem;
}
.theme-btn--newsletter {
  padding: 0 1.5rem;
  border-radius: 4px;
}
.theme-btn--newsletter:hover {
  transform: translateY(0);
}

.footer hr {
  background: #fff;
  margin: 2rem 0;
}
.privacy-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.privacy-links li a {
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
}
/* FOOTER */


/*/ SERVICE INNER /*/
.service-innner-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.service-innner-intro p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.service-innner-intro ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/*/ SERVICE INNER /*/

/*9-march-2023*/
.white-box {
    background: linear-gradient( to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.5) 300%);
    padding: 4rem;
    border-radius: 20px 0 0 20px;
}
.about-inner {
    width: 100%;
}

.service-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.project-card img {
    height: 300px;
    object-fit: cover;
}

.slick-next:before, .slick-prev:before {
    color: red;
    font-size: 34px;
}
/*9-march-2023*/

/*13-march-2023*/
.project-card {
    height: 500px;
}
/*13-march-2023*/

.service-card {
    min-height: 450px
}

/*24-march-2023*/

.service-innner-intro ul{
padding: 0rem 2rem;
margin-top: 1rem;
}

/*31-march-2023*/
.main-content h1{
    font-size:5rem;
}
.main-content h2{
    color:#fff !important;
}


/* SECTION: INNER MAIN */
.test-section--inner {
  position: relative;
  z-index: 1;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/inner-main-bg.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color:#000;
}