:root {
  --heading-font: "Poppins", sans-serif;
  --sub-font: "Open Sans", sans-serif;
  --font-52: 52px;
  --font-48: 48px;
  --font-44: 44px;
  --font-40: 40px;
  --font-36: 36px;
  --font-32: 32px;
  --font-28: 28px;
  --font-24: 24px;
  --font-20: 20px;
  --font-18: 18px;
  --font-16: 16px;
  --font-15: 15px;
  --font-14: 14px;
  --font-12: 12px;
  --font-10: 10px;
  --weight-100: 100;
  --weight-200: 200;
  --weight-300: 300;
  --weight-400: 400;
  --weight-500: 500;
  --weight-600: 600;
  --weight-700: 700;
  --weight-800: 800;
  --weight-900: 900;
  --black-clr: #000000;
  --black-light: #4d4d4d;
  --white-clr: #ffffff;
  --white-light: #f9f9f9;
  --logo-clr: #32568a;
  --logo-secendary-clr: #fbaf3a;
  --logo-rgb: 254, 129, 1;
  --logo-clr-50: #f4f6fb;
  --logo-clr-100: #e8ecf6;
  --logo-clr-200: #ccd9eb;
  --logo-clr-300: #9eb8db;
  --logo-clr-400: #6a93c6;
  --logo-clr-500: #4775b0;
  --logo-clr-600: #32568a;
  --logo-clr-700: #2c4a78;
  --logo-clr-800: #284064;
  --logo-clr-900: #263754;
  --logo-clr-950: #192438;
  --logo-secendary-50: #fff8eb;
  --logo-secendary-100: #feeac7;
  --logo-secendary-200: #fdd48a;
  --logo-secendary-300: #fbb03b;
  --logo-secendary-400: #fa9e25;
  --logo-secendary-500: #fbaf3a;
  --logo-secendary-600: #d85607;
  --logo-secendary-700: #b3390a;
  --logo-secendary-800: #922b0e;
  --logo-secendary-900: #78250f;
  --logo-secendary-950: #451003;
  --transition-fast: .1s ease;
  --transition-nrml: .25s ease;
  --transition-slow: .4s ease;
  --transition-xslow: .6s ease;
  --border-radius-3: 3px;
  --border-radius-5: 5px;
  --border-radius-10: 10px;
  --border-radius-15: 15px;
  --border-radius-20: 20px;
  --border-radius-25: 25px;
  --border-radius-30: 30px;
  --border-radius-circle: 50%;
  --box-shadow-sm: 0 0px 2px 2px rgba(0, 0, 0, 0.05);
  --box-shadow-nrml: 0 5px 10px -3px rgba(0, 0, 0, 0.1);
  --box-shadow-rglr: 0 5px 15px -3px rgba(0, 0, 0, 0.15);
  --box-shadow-lg: 0 4px 50px rgba(0, 0, 0, 0.08);
}

body {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  color: var(--black-light);
  font-family: var(--heading-font);
  font-size: var(--font-16);
}

a,
a:hover {
  color: currentColor;
  text-decoration: none;
}

header {
  position: absolute;
  width: 100%;
  z-index: 111;
  padding: 5px 0;
}
header #img2 {
  display: none;
}
@media only screen and (max-width: 768px) {
  header .navbar .navbar-nav .navbar-brand img {
    width: 140px;
  }
}
header .navbar .navbar-nav .nav-item {
  margin: 0 10px;
}
header .navbar .navbar-nav .nav-item .nav-link {
  font-weight: var(--weight-500);
  transition: var(--transition-nrml);
  color: var(--white-clr);
  font-family: var(--heading-font);
}
header .navbar .navbar-nav .nav-item .nav-link:hover, header .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--logo-secendary-400);
  opacity: 1;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  transition: var(--transition-nrml);
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.dropdown_inner {
  width: 160px;
  padding: 0px;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  border: unset;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.dropdown_inner .drop-downMenu {
  padding: 8px;
  background-color: white;
  border-radius: var(--border-radius-5);
  border: 1px solid #ebebeb;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.dropdown_inner .drop-downMenu .nav-link {
  font-size: var(--font-14);
  font-family: var(--sub-font);
  transition: var(--transition-fast);
  border-radius: var(--border-radius-5);
  padding: 10px 0 10px 10px;
  color: var(--black-light);
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.dropdown_inner .drop-downMenu .nav-link:hover {
  background-color: var(--logo-clr-200);
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
  animation: fadein 0.4s linear;
}
header .navbar .navbar-nav .getaQuote {
  position: relative;
  padding: 10px 20px;
  color: var(--black-clr);
  border-radius: var(--border-radius-20);
  background-color: var(--logo-secendary-500);
  font-weight: var(--weight-500);
  font-size: var(--font-15);
}
@media only screen and (max-width: 768px) {
  header .navbar .navbar-nav .getaQuote {
    padding: 5px 12px;
    font-size: var(--font-14);
  }
}
header.fixed {
  position: fixed;
  background-color: white;
  transition: var(--transition-nrml);
  padding: 8px 0;
  box-shadow: var(--box-shadow-sm);
}
header.fixed #img1 {
  display: none;
}
header.fixed #img2 {
  display: block;
}
header.fixed .navbar .nav-item {
  margin: 0 10px;
}
header.fixed .navbar .nav-item .nav-link {
  color: var(--black-clr);
}
header.fixed .navbar .nav-item .nav-link:hover, header.fixed .navbar .nav-item .nav-link.active {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  header.fixed {
    padding: 10px 0;
  }
  header.fixed #img1 {
    display: none;
  }
  header.fixed #img2 {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  header {
    position: relative !important;
    padding: 10px 0;
  }
  header #img1 {
    display: none;
  }
  header #img2 {
    display: block;
  }
  header .navbar .navbar-nav .nav-item .nav-link {
    color: var(--black-clr) !important;
  }
}

header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  transition: var(--transition-nrml);
}

header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.dropdown_inner {
  width: 160px;
  padding: 0px;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  border: unset;
}

header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.dropdown_inner .drop-downMenu {
  padding: 8px;
  background-color: white;
  border-radius: var(--border-radius-5);
  border: 1px solid #ebebeb;
}

header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.dropdown_inner .drop-downMenu .nav-link {
  font-size: var(--font-14);
  font-family: var(--sub-font);
  transition: var(--transition-fast);
  border-radius: var(--border-radius-5);
  padding: 10px 0 10px 10px;
}

header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.dropdown_inner .drop-downMenu .nav-link:hover {
  background-color: var(--logo-clr-200);
}

header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
  animation: fadein 0.4s linear;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
  80% {
    opacity: 1;
    transform: scaleY(1.1);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
.hero_Btn {
  color: var(--white-clr);
  font-weight: var(--weight-600);
  font-size: var(--font-18);
  background: var(--logo-clr);
  padding: 18px 50px;
  border-radius: var(--border-radius-5);
  transition: var(--transition-nrml);
  outline: 1px solid transparent;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
  border: unset;
}
.hero_Btn:hover, .hero_Btn:active {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  outline: 2px solid var(--logo-clr-300);
  outline-offset: -6px;
  color: var(--white-light);
}
.hero_Btn.btn_md {
  padding: 12px 36px;
  font-size: var(--font-16);
}
.hero_Btn.btn_sm {
  padding: 8px 24px;
  font-size: var(--font-14);
}
.hero_Btn.btn_invers {
  background-color: var(--logo-clr-50);
  color: var(--logo-clr);
}
.hero_Btn.btn_invers:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  outline: 2px solid var(--logo-clr-300);
  outline-offset: -6px;
  background-color: var(--logo-clr);
  color: var(--white-clr);
}

.float {
  animation: float 4s ease-in-out infinite;
  transform: translatey(0px);
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}

.modal {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.modal-backdrop.show {
  opacity: 0.75;
  background: radial-gradient(rgba(0, 0, 0, 0.4666666667), rgba(0, 0, 0, 0.7254901961), #000000);
}

.modal-content {
  overflow: unset !important;
  box-shadow: var(--box-shadow-lg);
  border: 0px;
}
.modal-content .close_btn {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--logo-clr-500);
  background-color: var(--logo-clr-50);
  padding: 8px;
  line-height: 1;
  border-radius: 3px;
  transition: var(--transition-fast);
}
.modal-content .close_btn:hover {
  opacity: 0.9;
  transform: scale(0.98);
}
.modal-content .modal_bodyWrapper {
  padding: 30px;
}

.modal_footer {
  position: relative;
  background-color: var(--logo-clr);
  color: var(--logo-clr-200);
  padding: 10px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-align: center;
}
.modal_footer a {
  background-color: var(--logo-clr-50);
  color: var(--logo-clr);
  font-weight: var(--weight-600);
  padding: 2px 6px;
  border-radius: var(--border-radius-10);
  margin-left: 10px;
}

.form-group {
  margin-bottom: 12px;
}
.form-group label {
  font-size: var(--font-14);
  margin: 0 0 5px;
  font-weight: var(--weight-500);
  color: var(--black-light);
  opacity: 0.8;
  margin-bottom: 0.75rem;
}
.form-group label span.star {
  color: red;
}
.form-group .form-control,
.form-group .form-select {
  height: 42px;
  border-radius: var(--border-radius-3);
  border-color: #c9c9c9;
}
.form-group .form-control:focus,
.form-group .form-select:focus {
  border-color: var(--logo-clr-500);
  color: var(--logo-clr-500);
  box-shadow: unset;
}
.form-group .form-control::-moz-placeholder, .form-group .form-select::-moz-placeholder {
  color: #636363;
}
.form-group .form-control::placeholder,
.form-group .form-select::placeholder {
  color: #636363;
}

.logoWrapper {
  position: relative;
  padding: 15px 10px;
  background-color: var(--logo-clr-50);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.logoWrapper::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 70px 70px 0;
  border-color: transparent var(--logo-clr-50) transparent transparent;
  top: 0;
  right: 100%;
}
.logoWrapper::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 70px 0 0;
  border-color: var(--logo-clr-50) transparent transparent transparent;
  top: 0;
  left: 100%;
}

.substyle {
  border-left: 5px dotted var(--logo-clr);
  padding-left: 10px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
  letter-spacing: 3px;
}
@media only screen and (max-width: 768px) {
  .substyle {
    font-size: var(--font-12) !important;
    font-weight: var(--weight-600);
  }
}

.heading {
  color: var(--black-clr);
}
@media only screen and (max-width: 768px) {
  .heading {
    width: 100% !important;
  }
}
.heading h1,
.heading .h1 {
  font-family: var(--heading-font);
  font-size: var(--font-36);
  font-weight: var(--weight-700);
  line-height: 1.3;
  color: inherit;
  text-transform: capitalize;
}
.heading h1 span,
.heading .h1 span {
  color: var(--logo-secendary-500);
}
@media only screen and (max-width: 768px) {
  .heading h1,
  .heading .h1 {
    font-size: var(--font-28);
    font-weight: var(--weight-600);
  }
}
@media only screen and (max-width: 480px) {
  .heading h1,
  .heading .h1 {
    font-size: var(--font-24);
    font-weight: var(--weight-600);
  }
}
.heading h2,
.heading .h2 {
  font-family: var(--heading-font);
  font-size: var(--font-28);
  font-weight: var(--weight-600);
  line-height: 1.5;
  text-transform: capitalize;
  color: inherit;
}
.heading h2 span,
.heading .h2 span {
  color: var(--logo-secendary-clr-400);
}
.heading p,
.heading .p {
  font-family: var(--heading-font);
  font-size: var(--font-16);
  font-weight: var(--weight-400);
  line-height: normal;
  color: var(--black-clr);
  opacity: 0.75;
}
@media only screen and (max-width: 768px) {
  .heading p,
  .heading .p {
    font-size: var(--font-14);
    font-weight: var(--weight-300);
  }
}
.heading.text-white {
  color: var(--white-clr);
}
.heading.text-white p,
.heading.text-white .p {
  color: var(--white-clr) !important;
}

.logo_clr {
  color: var(--logo-clr);
}

.logo_secclr {
  color: #dd9b00 !important;
}

.logo_bgclr {
  --bg-opacity: 1;
  background-color: rgba(var(--logo-rgb), var(--bg-opacity)) !important;
}

.swiper-pagination-bullet {
  opacity: 1;
  color: var(--white-clr);
  width: auto;
  height: auto;
  border-radius: unset;
  margin-left: 25px !important;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: var(--transition-nrml);
  color: var(--white-light);
  border-left: 4px solid var(--logo-clr-900);
}
.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white-light);
  border-left: 4px solid var(--logo-clr-800);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.4);
  border-left: 4px solid var(--logo-clr-600);
  color: white;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 50px;
}

.pageSwitch {
  border-radius: var(--border-radius-5) !important;
}

header {
  position: absolute;
  z-index: 11;
  width: 100%;
}

#heroSection {
  position: relative;
  overflow: hidden;
}
#heroSection .heroSwiper .swiper-slide .swiper_heroSlider .sliderTitle {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #heroSection #mobId {
    height: 60vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 70% 10%;
       object-position: 70% 10%;
  }
  #heroSection .swiper-pagination {
    display: none;
  }
  #heroSection .sliderTitle {
    top: 50% !important;
  }
}

.swiper-button-next, .swiper-button-prev {
  width: 40px;
  height: 40px;
  color: var(--logo-clr-600);
  transition: var(--transition-nrml);
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-5);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: var(--white-clr);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: var(--font-24);
  font-weight: var(--weight-900);
}

#aboutIyro {
  position: relative;
  padding: 5rem 0;
  z-index: 1;
  background-color: var(--logo-clr-50);
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  #aboutIyro {
    padding: 3rem 0;
  }
  #aboutIyro #backbg {
    width: 100%;
  }
}

#whySolar {
  background-color: #f8a23e;
  background-image: linear-gradient(290deg, #f8a23e 0%, #F76B1C 100%);
  position: relative;
  padding: 6rem 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #whySolar {
    padding: 2rem 0;
  }
}
#whySolar .whySolarWrapper {
  background: var(--white-clr);
  padding: 30px 20px;
  border-radius: 10px;
  border-bottom: 4px solid var(--logo-secendary-clr-500);
  height: 100%;
  margin-bottom: 70px;
}
#whySolar .whySolarWrapper .heading p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  margin-bottom: 30px;
  transition: var(--transition-slow);
}
#whySolar .whySolarWrapper .heading.show p {
  -webkit-line-clamp: 40;
}
#whySolar .whySolarWrapper .heading .view_btn {
  cursor: pointer;
  position: relative;
  display: block;
}
#whySolar .whySolarWrapper .heading .view_btn::after {
  position: absolute;
  content: "Show More...";
  width: -moz-fit-content;
  width: fit-content;
  color: var(--logo-clr);
  white-space: nowrap;
  bottom: 0;
  font-size: var(--font-small);
  font-weight: var(--weight-500);
  transition: var(--trans-slow);
}
#whySolar .whySolarWrapper .heading .view_btn.show::after {
  content: "Show Less...";
}
#whySolar .swiper-button-next, #whySolar .swiper-button-prev {
  position: absolute;
  top: 95%;
}
#whySolar .swiper-button-prev, #whySolar .swiper-rtl .swiper-button-next {
  left: 45%;
  right: auto;
}
#whySolar .swiper-button-next, #whySolar .swiper-rtl .swiper-button-prev {
  right: 45%;
  left: auto;
}

#ourPresence {
  position: relative;
  padding: 0 0 5rem;
}

#testimonial_section {
  padding: 6rem 0;
  background-color: var(--logo-clr-50);
}
@media only screen and (max-width: 480px) {
  #testimonial_section {
    padding: 3rem 0;
  }
}
#testimonial_section .testimonialWrapper {
  padding: 50px 20px 30px;
  border: 1px solid var(--logo-clr-100);
  border-radius: var(--border-radius-10);
  background-color: var(--white-clr);
  box-shadow: inset 1px 2px 10px rgba(20, 20, 20, 0.05);
  position: relative;
  z-index: 1;
}
#testimonial_section .testimonialWrapper::after {
  font-family: bootstrap-icons !important;
  content: "\f6b0";
  position: absolute;
  top: 0;
  z-index: -1;
  font-size: 100px;
  line-height: 1;
  right: 0px;
  color: var(--logo-clr-50);
  text-shadow: -4px -1px #fff8ec;
}

#ourClients {
  position: relative;
  padding: 6rem 0;
}
@media only screen and (max-width: 480px) {
  #ourClients {
    padding: 3rem 0;
  }
}
#ourClients .ourClients ul {
  gap: 25px;
  margin: 10px 0;
}
#ourClients .ourClients ul li {
  padding: 10px;
  border-radius: var(--border-radius-5);
  background-color: var(--white-clr);
  border: 1px solid var(--logo-clr-100);
  box-shadow: var(--box-shadow-sm);
}
#ourClients .ourClients ul li:last-child {
  margin-right: 25px;
}
#ourClients .ourClients ul li img {
  width: 150px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1300px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1260px;
  }
}
#getaQuote {
  background-color: var(--logo-clr-400);
  background-image: url(../images/quote.png);
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  position: relative;
}
@media only screen and (max-width: 480px) {
  #getaQuote {
    padding: 0rem 0;
  }
}
#getaQuote .getaQuote {
  background: var(--logo-clr-300);
  padding: 50px 20px;
  max-width: 750px;
  margin-left: auto;
  border-radius: var(--border-radius-10) 0 0 var(--border-radius-10);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 480px) {
  #getaQuote .getaQuote {
    border-radius: 0;
  }
}
#getaQuote .getaQuote .form-group .form-control, #getaQuote .getaQuote .form-group .form-select {
  height: 42px;
  border-radius: var(--border-radius-3);
  border-color: var(--logo-clr-400);
  background: var(--logo-clr-200);
}
#getaQuote .getaQuote .form-group .form-control::-moz-placeholder, #getaQuote .getaQuote .form-group .form-select::-moz-placeholder {
  color: var(--logo-clr-400);
}
#getaQuote .getaQuote .form-group .form-control::placeholder, #getaQuote .getaQuote .form-group .form-select::placeholder {
  color: var(--logo-clr-400);
}

#footerWrapper {
  position: relative;
  background-color: var(--logo-clr-100);
}
@media only screen and (max-width: 576px) {
  #footerWrapper .border-end_0 {
    border-right: 0 !important;
  }
}
#footerWrapper .footerWrapper .footbor {
  border-right: 1px solid var(--logo-clr-300);
  border-bottom: 1px solid var(--logo-clr-300);
  padding: 2rem 1rem 1rem;
  height: 100%;
}
#footerWrapper .footerWrapper .footbor .footerIcon {
  width: 45px;
  height: 45px;
  border-radius: var(--border-radius-circle);
  display: block;
  background-color: var(--logo-clr-400);
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  color: var(--black-clr);
  margin-bottom: 20px;
}
#footerWrapper .footerWrapper .footerLogo ul li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-circle);
  border: 1px solid var(--black-clr);
  text-align: center;
  transition: var(--transition-nrml);
  line-height: 40px;
}
#footerWrapper .footerWrapper .footerLogo ul li a i {
  color: var(--black-clr);
  transition: var(--transition-nrml);
}
#footerWrapper .footerWrapper .footerLogo ul li a:hover {
  border-color: var(--logo-clr-600);
}
#footerWrapper .footerWrapper .footerLogo ul li a:hover i {
  color: var(--logo-clr);
}
#footerWrapper .footerWrapper .footerLink ul li {
  transition: var(--transition-fast);
}
#footerWrapper .footerWrapper .footerLink ul li:hover {
  color: var(--logo-clr);
  font-weight: var(--weight-500);
  width: -moz-fit-content;
  width: fit-content;
}
#footerWrapper .footerCon a {
  margin-right: 20px;
  transition: var(--transition-nrml);
  font-size: var(--font-14);
}
#footerWrapper .footerCon a:hover {
  color: var(--logo-clr-300);
}

#breadcrumbWrapper {
  position: relative;
}
#breadcrumbWrapper .breadcrumbWrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0%, -50%);
}

#projectSection {
  position: relative;
  padding: 6rem 0;
}
#projectSection .projectSection .projectWrapper {
  position: relative;
}
#projectSection .projectSection .projectWrapper .projecImgtWrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#projectSection .projectSection .projectWrapper .projecImgtWrapper img {
  transition: var(--transition-xslow);
}
#projectSection .projectSection .projectWrapper .projecImgtWrapper::after {
  position: absolute;
  content: "";
  background-color: var(--logo-clr);
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  transition: var(--transition-xslow);
}
#projectSection .projectSection .projectWrapper .projectTextWrapper {
  position: absolute;
  width: 90%;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white-clr);
  padding: 30px 20px;
  transition: var(--transition-nrml);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 2;
}
#projectSection .projectSection .projectWrapper .projectTextWrapper .heading h6 {
  font-size: var(--font-18);
  line-height: 26px;
}
#projectSection .projectSection .projectWrapper .projectTextWrapper .heading a {
  position: relative;
  color: var(--logo-clr-600);
  font-weight: var(--weight-500);
}
#projectSection .projectSection .projectWrapper .projectTextWrapper .heading a::after {
  position: absolute;
  content: "";
  width: 50px;
  left: 100%;
  height: 2px;
  background-color: var(--logo-clr-600);
  top: 12px;
  margin-left: 10px;
}
#projectSection .projectSection .projectWrapper:hover .projecImgtWrapper img {
  transform: scale(1.1);
}
#projectSection .projectSection .projectWrapper:hover .projecImgtWrapper ::after {
  opacity: 0.4;
}
#projectSection .projectSection .projectWrapper:hover .projectTextWrapper {
  background-color: var(--logo-clr-100);
}

#project_Details {
  position: relative;
  padding: 6rem 0;
}

#project_Gallery {
  position: relative;
  padding: 4rem 0;
  background-color: var(--logo-clr-50);
}
#project_Gallery .slidingGallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 20px;
  padding-left: 0;
}
#project_Gallery .slidingGallery li:nth-child(1), #project_Gallery .slidingGallery li:nth-child(4) {
  grid-column-end: span 2;
  grid-row-end: span 2;
}
#project_Gallery .slidingGallery li:nth-child(2), #project_Gallery .slidingGallery li:nth-child(3) {
  grid-column-end: span 1;
  grid-row-end: span 1;
}

#services_sectionDetails {
  position: relative;
  padding: 6rem 0;
}

.tabs ul {
  margin: 0;
  padding: 0;
}
.tabs ul li {
  background: var(--logo-clr-50);
}
.tabs ul li a {
  padding: 12px 20px;
  display: block !important;
  transition: var(--transition-slow);
}

.tabs ul li a:hover {
  background: var(--logo-clr-100);
}

.tabs ul li a.active {
  background: var(--logo-clr-600);
  color: var(--white-clr);
}

.item {
  margin-bottom: 2px;
}
.item::before {
  cursor: pointer;
  background: var(--logo-clr-50);
  padding: 12px 20px;
  display: block;
}
.item.active::before {
  background: var(--logo-clr-600);
  color: var(--white-clr);
}
.item.active .item-content {
  padding: 1em;
  transition: opacity 0.3s ease-in-out;
}

@media all and (min-width: 800px) {
  .item.active .item-content {
    padding-top: 0;
  }
  .tabs-side .tabs li {
    margin-bottom: 2px;
  }
}
/* The project specific CSS starts here This is the minimum CSS that you will need in order for this to work */
.tabbed-content .tabs {
  display: none;
}
.tabbed-content .item {
  min-height: 2em;
}
.tabbed-content .item::before {
  content: attr(data-title);
}
.tabbed-content .item .item-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.tabbed-content .item.active .item-content {
  opacity: 1;
  visibility: visible;
  height: auto;
}

@media all and (min-width: 800px) {
  .tabbed-content .tabs {
    display: block;
  }
  .tabbed-content .tabs li {
    display: inline-block;
  }
  .tabbed-content .tabs li a {
    display: block;
  }
  .tabbed-content .item {
    min-height: 0;
  }
  .tabbed-content .item::before {
    display: none;
  }
  .tabbed-content.tabs-side .tabs li {
    display: block;
  }
}
#aboutSection {
  position: relative;
  padding: 6rem 0;
}
#aboutSection::before {
  position: absolute;
  content: "";
  width: 32%;
  height: 420px;
  background-color: var(--logo-clr-50);
  top: 0;
  left: 0;
  z-index: -1;
}
#aboutSection .aboutSectionLeftWrapper {
  height: 100%;
  background: var(--logo-clr-600);
  margin-right: 40px;
  position: relative;
  border-radius: var(--border-radius-10);
}
#aboutSection .aboutSectionLeftWrapper .exp {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: black;
  padding: 30px;
  color: white;
  text-align: center;
  border-radius: var(--border-radius-5);
}

#cta_Section {
  position: relative;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(36, 36, 36) 0%, rgb(8, 49, 4) 35%, rgb(53, 28, 0) 55%, rgb(37, 37, 37) 100%);
  padding: 6rem 0;
}
#cta_Section .cta_Section {
  margin-top: 80px;
}
#cta_Section .cta_Section .cta_wrapper {
  color: var(--white-clr);
  border: 2px dashed #707070;
  padding: 2rem 1rem 1.5rem;
  height: 100%;
  border-radius: var(--border-radius-5);
  background: rgba(255, 255, 255, 0.05);
}

#aboutIyroMVV {
  position: relative;
  padding: 5rem 0;
  background-color: var(--logo-clr-50);
}
#aboutIyroMVV .aboutIyroMVVWrapper {
  height: 100%;
}
#aboutIyroMVV .aboutIyroMVVWrapper img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

#contatct_section {
  position: relative;
  padding: 6rem 0;
}
#contatct_section .contact_sectionLeft {
  background-color: var(--logo-clr);
  padding: 3rem 1.5rem;
  border-radius: var(--border-radius-10);
}
#contatct_section .details-contact-section {
  overflow: hidden;
  padding: 40px 30px 20px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  text-align: center;
}
#contatct_section .details-contact-section:hover {
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.25);
  border-bottom: 3px solid #4D76B2;
}
#contatct_section .details-contact-section:hover .details-contact-section-inner .details-contact-section-img img {
  transform: translateY(-67px);
  opacity: 0;
}
#contatct_section .details-contact-section:hover .details-contact-section-inner .details-contact-section-text {
  transform: translateY(-60px);
}
#contatct_section .details-contact-section-img img {
  width: 50px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  position: relative;
}
#contatct_section .details-contact-section-inner {
  height: 100px;
  overflow: hidden;
}
#contatct_section .details-contact-section-text {
  position: relative;
  transition: all 0.3s ease;
}
#contatct_section .details-contact-section-text ul {
  padding: 0;
  margin: 0;
  font-size: 16px;
}
#contatct_section .details-contact-section-text ul a {
  color: #1c1c24;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  font-weight: 600;
}
#contatct_section .details-contact-section-text ul a:hover {
  color: var(--main-color);
}
#contatct_section .details-contact-section-text p {
  margin-bottom: 5px;
}

#blogSection {
  background-color: #edeefa;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
#blogSection::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/hero_after.png);
  background-size: cover;
  background-position: bottom;
  top: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}
#blogSection .blogSectionWrap {
  border: 2px solid var(--logo-subclr);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-nrml);
  position: relative;
}
#blogSection .blogSectionWrap .blogSectionContent {
  padding: 1rem;
  background-color: var(--white-light);
}
#blogSection .blogSectionWrap:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  z-index: 11;
}
#blogSection .blogSectionWrap:hover .heading h2 {
  text-decoration: underline;
  transition: var(--transition-slow);
}
#blogSection .blogSectionWrap:hover a.stretched-link {
  color: var(--logo-clr);
  transition: var(--transition-nrml);
  opacity: 1 !important;
}

#manufacturingSection {
  position: relative;
  padding: 5rem 0;
}

#stanadrsSec {
  position: relative;
  padding: 5rem 0;
  border-top: 1px solid var(--logo-clr-200);
}

.stanadrsSec ul {
  gap: 25px;
  margin: 10px 0;
  margin-right: 25px;
}
.stanadrsSec li {
  padding: 10px;
  border-radius: var(--border-radius-5);
  background-color: var(--white-clr);
  border: 1px solid var(--logo-clr-100);
  box-shadow: var(--box-shadow-sm);
}
.stanadrsSec li img {
  width: 150px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

#awardsSection {
  position: relative;
  padding: 5rem 0;
  background-color: var(--logo-clr);
  z-index: 1;
}
#awardsSection::after {
  position: absolute;
  content: "";
  background-image: url(../images/awardPattern.png);
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.1;
}
#awardsSection .awardsSectionWrapper {
  position: relative;
  z-index: 1;
  height: 100%;
}
#awardsSection .awardsSectionWrapper::after {
  position: absolute;
  content: "";
  background-color: var(--white-clr);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  border-radius: 10px;
  z-index: -1;
}
#awardsSection .awardsSectionWrapper .awardsSectionImg {
  position: relative;
  z-index: 2;
  transition: all 0.2s ease-in;
}
#awardsSection .awardsSectionWrapper .awardsSectionImg img.img-fluid {
  height: 250px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  -o-object-fit: cover;
  object-fit: cover;
}
#awardsSection .awardsSectionWrapper .awardsSectionImg::after {
  position: absolute;
  content: attr(data-yr);
  right: 10px;
  top: 10px;
  padding: 5px 12px;
  font-size: 15px;
  background: var(--logo-secendary-200);
  border-radius: 10px 0 10px 0;
  font-weight: var(--weight-600);
}
#awardsSection .awardsSectionWrapper:hover {
  cursor: pointer;
}
#awardsSection .awardsSectionWrapper:hover .awardsSectionImg {
  transform: translateY(-10px);
}

@media only screen and (max-width: 576px) {
  #awardsSection {
    padding: 3rem 0;
  }
  #awardsSection .heading h2 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}
#awardsSectionInner {
  position: relative;
  padding: 6rem 0;
}
#awardsSectionInner .awardsSectionWrapper {
  position: relative;
  padding: 10px 10px 20px;
  box-shadow: var(--box-shadow-lg);
  border-radius: var(--border-radius-5);
  text-align: center;
}
#awardsSectionInner .awardsSectionWrapper:hover .awardsSectionImg img {
  transform: scale(1.2);
}
#awardsSectionInner .awardsSectionWrapper .awardsSectionImg {
  margin-bottom: 20px;
  overflow: hidden;
}
#awardsSectionInner .awardsSectionWrapper .awardsSectionImg img {
  aspect-ratio: 1/1;
  transition: var(--transition-xslow);
  -o-object-fit: cover;
     object-fit: cover;
}

#productsSection {
  position: relative;
  padding: 5rem 0;
}
#productsSection .productsSectionWrapper {
  position: relative;
  padding: 20px;
}
#productsSection .productsSectionWrapper::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
}
#productsSection .productsSectionWrapper.brb::after {
  border-right: 1px solid var(--logo-clr-200);
  border-bottom: 1px solid var(--logo-clr-200);
}
#productsSection .productsSectionWrapper.bb::after {
  border-bottom: 1px solid var(--logo-clr-200);
}
#productsSection .productsSectionWrapper.blb::after {
  border-left: 1px solid var(--logo-clr-200);
  border-bottom: 1px solid var(--logo-clr-200);
}
#productsSection .productsSectionWrapper.br::after {
  border-right: 1px solid var(--logo-clr-200);
}
#productsSection .productsSectionWrapper .imgWrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-10);
}

#productDetails {
  position: relative;
  padding: 6rem 0;
}
#productDetails .productDetailsLeft {
  position: sticky;
  top: 50px;
}

#profileUpdate .accordion-header button {
  position: relative;
  padding: 10px 0;
  border-radius: 0;
}
#profileUpdate .accordion-header button::after {
  position: absolute;
  content: "\f22c";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  right: 0;
}
#profileUpdate .accordion-header button:active {
  outline: none;
  border: unset;
}
#profileUpdate .accordion-collapse.collapse.show {
  border-top: 1px solid #c3c3c3;
  transition: all 0.3s ease;
}

.btnmom {
  width: 40px;
  cursor: pointer;
}
.btnmom span {
  display: block;
  width: 100%;
  border-radius: 3px;
  height: 4px;
  background: var(--black-clr);
  transition: all 0.3s;
  position: relative;
}
.btnmom span + span {
  margin-top: 8px;
}
.btnmom.active span:nth-child(1) {
  animation: ease 0.7s top forwards;
}
.btnmom.not-active span:nth-child(1) {
  animation: ease 0.7s top-2 forwards;
}
.btnmom.active span:nth-child(2) {
  animation: ease 0.7s scaled forwards;
}
.btnmom.not-active span:nth-child(2) {
  animation: ease 0.7s scaled-2 forwards;
}
.btnmom.active span:nth-child(3) {
  animation: ease 0.7s bottom forwards;
}
.btnmom.not-active span:nth-child(3) {
  animation: ease 0.7s bottom-2 forwards;
}
@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 22px;
    transform: rotate(0);
  }
  100% {
    top: 17px;
    transform: rotate(45deg);
  }
}
@keyframes top-2 {
  0% {
    top: 8px;
    transform: rotate(45deg);
  }
  50% {
    top: 8px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 8px;
    transform: rotate(0);
  }
  100% {
    bottom: 8px;
    transform: rotate(135deg);
  }
}
@keyframes bottom-2 {
  0% {
    bottom: 22px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 22px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

#keyPoints {
  position: relative;
  padding: 1rem;
  background-color: var(--logo-clr-50);
}
#keyPoints .keyPointsWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
#keyPoints .keyPointsWrapper .keyPointsWrapperimg {
  background-color: var(--white-clr);
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: var(--border-radius-5);
}
#keyPoints .keyPointsWrapper .keyPointsWrapperimg img {
  width: 35px;
}
#keyPoints .keyPointsWrapper .keyPonitWrappertext h6 {
  font-weight: var(--weight-600);
  color: var(--black-clr);
  margin-bottom: 0.25rem;
}
#keyPoints .keyPointsWrapper .keyPonitWrappertext span {
  opacity: 0.75;
}

#prodCate {
  position: relative;
  padding: 5rem 0;
}
#prodCate .prodCate_container .prodCate_containerImg {
  background-color: var(--logo-clr-50);
  border-radius: var(--border-radius-10);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-nrml);
}
#prodCate .prodCate_container .prodCate_containerImg img {
  width: 150px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  transition: var(--transition-nrml);
  transform-origin: center;
  mix-blend-mode: multiply;
}
#prodCate .prodCate_container .prodCate_containerTitle a {
  text-align: center;
  display: block;
  margin-top: 1rem;
  font-weight: var(--weight-600);
}
#prodCate .prodCate_container:hover .prodCate_containerImg {
  background-color: var(--logo-clr-100);
}
#prodCate .prodCate_container:hover .prodCate_containerImg img {
  transform: scale(1.05);
}

#home_prod_listing {
  padding: 0 0 5rem;
}

.prod_card {
  position: relative;
  transition: var(--transition-nrml);
  border: 1px solid var(--logo-clr-100);
  border-radius: var(--border-radius-10);
  overflow: hidden;
  background-color: var(--white-clr);
}
.prod_card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.prod_filter {
  box-shadow: 12px 0px 23px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding: 25px 0px;
  padding-right: 10px;
  height: 100%;
}
.prod_filter .sortbyPrice li {
  padding-left: 1rem;
  position: relative;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.prod_filter .sortbyPrice li button {
  background-color: unset;
  border: unset;
  outline: unset;
  padding: 0;
  font-size: var(--font-12);
  font-weight: var(--weight-400);
}
.prod_filter .sortbyPrice li button:focus, .prod_filter .sortbyPrice li button:active {
  background-color: unset;
  border: unset;
  outline: unset;
}
.prod_filter .sortbyPrice li.active::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: var(--logo-clr);
  left: 0;
  top: 0;
}

.successWish, .removeWish {
  display: none;
  margin-top: 10px;
  padding: 10px 20px;
}

.form-check-input {
  width: 0.875rem;
  height: 0.875rem;
}
.form-check-input:checked {
  background-color: var(--logo-clr-400);
}

.form-check-label {
  font-size: var(--font-12);
  font-weight: var(--weight-400);
  line-height: 1;
}

.page-link {
  color: var(--logo-clr);
  padding: 2px 6px;
  font-size: var(--font-12) !important;
}

.active > .page-link, .page-link.active {
  z-index: 3;
  color: var(--logo-secendary-200);
  background-color: var(--logo-clr);
  border-color: var(--logo-clr);
}

#cartWraper {
  position: relative;
  padding: 4rem 0;
}

.cartValueWrapper {
  background-color: var(--white-clr);
  border-radius: var(--border-radius-10);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
.cartValueWrapper .cart_heading {
  background-color: var(--logo-clr-50);
  padding: 1rem;
  border-radius: var(--border-radius-10);
}
.cartValueWrapper .cartValueBody {
  padding: 1rem;
}

#checkout_Wrappepr {
  position: relative;
  padding: 5rem 0;
}

.form-label {
  font-size: var(--font-14);
  font-weight: var(--weight-400);
  opacity: 0.8;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.form-control {
  border-radius: 0;
  padding: 10px;
}
.form-control:focus {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-color: var(--logo-clr);
}
.form-control::-moz-placeholder {
  opacity: 0.25;
  font-size: var(--font-14);
}
.form-control::placeholder {
  opacity: 0.25;
  font-size: var(--font-14);
}

#profile_wrapper {
  position: relative;
}
#profile_wrapper .profile_menu {
  box-shadow: 12px 0px 23px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding: 25px 0px;
  padding-right: 30px;
  height: 100%;
}
#profile_wrapper .profile_menu ul li {
  margin-bottom: 1px;
  transition: var(--transition-nrml);
  border-radius: var(--border-radius-5);
}
#profile_wrapper .profile_menu ul li:hover {
  background-color: var(--logo-clr-50);
}
#profile_wrapper .profile_menu ul li.active {
  background-color: var(--logo-clr-400);
  color: var(--white-clr);
}
#profile_wrapper .profile_menu ul li a {
  display: flex;
  padding: 10px 15px;
  align-items: center;
}

.profile_viewWrapper {
  background-color: var(--white-clr);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  margin: 3rem 0;
  padding: 1rem;
  border-radius: var(--border-radius-10);
}
.profile_viewWrapper .user_profileView .user_profileImg img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: var(--border-radius-circle);
}

.profile_addressWrapper {
  position: relative;
  padding: 0.75rem;
  background-color: var(--logo-clr-50);
  border-radius: var(--border-radius-5);
  position: relative;
}
.profile_addressWrapper.active::after {
  position: absolute;
  content: "Primary";
  top: 10px;
  right: 10px;
  z-index: 9;
  font-size: 0.75rem;
  background-color: var(--logo-secendary-200);
  font-weight: var(--weight-600);
  padding: 0.1rem 0.25rem;
  border-radius: var(--border-radius-5);
}

.user_orderWrapper {
  border-radius: var(--border-radius-5);
  border: 1px solid var(--logo-clr-200);
}
.user_orderWrapper .userOrder_status {
  padding: 0.75rem;
  background-color: var(--logo-clr-50);
  border-radius: var(--border-radius-5);
}
.user_orderWrapper .user_details {
  padding: 0.75rem;
}

.order_btnStat {
  padding: 0.175rem 0.475rem;
  font-size: var(--font-12);
  font-weight: var(--weight-500);
  color: var(--white-clr);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: var(--border-radius-5);
}
.order_btnStat.confirm {
  background-color: #3588f5;
}
.order_btnStat.transit {
  background-color: var(--logo-secendary-300);
}
.order_btnStat.cancel {
  background-color: #f53535;
}
.order_btnStat.deliverd {
  background-color: #26ce72;
}

.user_cart {
  position: relative;
  padding: 0.75rem 0.75rem 0 0.75rem;
}

#login_wrapper {
  margin: 6rem 0;
}

.login_wrapper {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-10);
  overflow: hidden;
}
.login_wrapper .login_inner {
  position: relative;
  padding: 3rem 1.5rem 1.5rem;
  background-color: var(--white-clr);
}
.login_wrapper .loginFooter {
  background-color: var(--logo-clr-100);
  font-size: var(--font-14);
}
.login_wrapper .loginFooter a span {
  color: var(--logo-secendary-600);
  font-weight: var(--weight-600);
}

.order_invoicewrapper {
  border: 1px solid var(--logo-clr-200);
  border-radius: var(--border-radius-10);
}
.order_invoicewrapper .order_invoiceHeader {
  padding: 2rem 1rem;
  background-color: var(--logo-clr-50);
  border-radius: var(--border-radius-10);
}
.order_invoicewrapper .order_bodyWrapper {
  padding: 1.2rem 1rem;
  border-radius: var(--border-radius-10);
}

.solar_result {
  position: relative;
  background-color: var(--white-clr);
  padding: 1.5rem 0.75rem;
  box-shadow: 0 0 20px var(--logo-clr-100);
  height: 100%;
  border-radius: var(--border-radius-10);
}

#solar_calc {
  position: relative;
  padding: 6rem 0;
}

#gallerySection {
  position: relative;
  padding: 6rem 0;
}
#gallerySection .gallery__Wrapper {
  position: relative;
  border-radius: var(--border-radius-5);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
#gallerySection .gallery__Wrapper img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transition: var(--transition-slow);
}
#gallerySection .gallery__Wrapper img:hover {
  transform: scale(1.1);
}
#gallerySection .gallery__Wrapper div {
  background-color: var(--logo-clr-100);
  padding: 10px;
  position: relative;
  z-index: 2;
}
#gallerySection .gallery__Wrapper div h6 {
  margin-bottom: 0;
  text-align: center;
}

#faq_section {
  position: relative;
  padding: 5rem 0;
  z-index: 1;
  background-color: var(--logo-clr-50);
}
#faq_section::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/faqbg.png);
  background-repeat: repeat;
  background-size: 150px;
  opacity: 0.05;
}
#faq_section .faq_sectionWrapper {
  padding-left: 35px;
  position: relative;
}
#faq_section .faq_sectionWrapper::before {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background-repeat: no-repeat;
  background-size: 1.2rem;
  transition: transform 0.2s ease-in-out;
  border-radius: 50%;
  background-position: center;
  position: absolute;
  left: 0px;
  background-image: url(../images/icons/question.png);
}

#certicate_section {
  position: relative;
  padding: 0 0 5rem;
}
#certicate_section .certificate_standars {
  border: 1px solid var(--logo-clr-200);
  border-radius: var(--border-radius-10);
  overflow: hidden;
  transition: var(--transition-nrml);
}
#certicate_section .certificate_standars img {
  transition: var(--transition-nrml);
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#certicate_section .certificate_standars h6 {
  margin-bottom: 0;
  padding: 15px 10px;
  position: relative;
  z-index: 2;
  background-color: var(--logo-clr-50);
  text-align: center;
  transition: var(--transition-nrml);
}
#certicate_section .certificate_standars:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
#certicate_section .certificate_standars:hover img {
  transform: scale(1.1);
}
#certicate_section .certificate_standars:hover h6 {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 11111;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#loader .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader .circle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 10px solid var(--logo-clr-400);
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: var(--border-radius-circle);
  animation: spinLeft 0.85s ease-in infinite;
}
#loader .circle::after {
  position: absolute;
  content: "";
  border: 10px solid var(--logo-secendary-300);
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: var(--border-radius-circle);
  width: 115px;
  height: 115px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spinRight 0.85s ease-in infinite;
}
@keyframes spinLeft {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spinRight {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
body.loaded #loader {
	display: none;
}
body:not(.loaded) .circle {
	display: none;
}
#end_userReg {
  position: relative;
  padding: 5rem 0;
}

@media only screen and (max-width: 768px) {
  #prodCate .prodCate_container .prodCate_containerImg img {
    width: 100%;
  }
  #certicate_section .certificate_standars img {
    height: auto;
  }
  #whySolar .swiper-button-next, #whySolar .swiper-rtl .swiper-button-prev {
    right: 35%;
  }
  #whySolar .swiper-button-prev, #whySolar .swiper-rtl .swiper-button-next {
    left: 35%;
  }
  header #img2 {
    width: 150px;
  }
}
#career_section {
  position: relative;
  padding: 6rem 0;
}

.career_wrapper {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--logo-clr-100);
  border-radius: var(--border-radius-5);
  background-color: var(--white-clr);
  transition: var(--transition-nrml);
}
.career_wrapper.modal_d:hover {
  box-shadow: unset;
  border: unset;
}
.career_wrapper:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--logo-clr-300);
}
.career_wrapper ul li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.career_wrapper ul li .career_icon {
  width: 22px;
  height: 22px;
  border-radius: var(--border-radius-circle);
  border: 1px solid var(--logo-secendary-200);
  color: var(--logo-clr-500);
  line-height: 22px;
  text-align: center;
  font-size: 12px;
}

#milestone_section {
  position: relative;
  padding: 6rem;
}
#milestone_section .milestone_section {
  position: relative;
  padding-left: 100px;
}
#milestone_section .milestone_section::before {
  position: absolute;
  content: "";
  left: 50px;
  width: 1px;
  top: 0;
  height: 100%;
  background-color: var(--logo-clr-200);
}
#milestone_section .milestone_section ul li {
  position: relative;
  margin-bottom: 1.5rem;
}
#milestone_section .milestone_section ul li::before {
  position: absolute;
  content: "";
  left: 50px;
  width: 0.875rem;
  height: 0.875rem;
  background-color: var(--logo-clr-500);
  border-radius: var(--border-radius-circle);
  outline: 3px solid var(--logo-secendary-400);
  top: 50%;
  transform: translateY(-50%);
  left: -56px;
}
#milestone_section .milestone_section ul li .milestone_wrapper {
  background-color: var(--white-clr);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  width: 400px;
  align-items: center;
  border-radius: var(--border-radius-10);
  display: flex;
}
#milestone_section .milestone_section ul li .milestone_wrapper .heading {
  padding: 1rem;
  border-right: 1px dashed var(--logo-clr-300);
}
#milestone_section .milestone_section ul li .milestone_wrapper .milestone_stamp {
  padding: 0 1rem;
}
.whatsapp__fixedIcon{
    position: fixed;
    z-index: 101;
    right: 20px;
    bottom: 20px;
}
.whatsapp__fixedIcon img{
    width: 55px;
}
/*# sourceMappingURL=style.css.map */






