/*============================================ 
======== Css Content =========
# Typography
# Normalize 
# Global style
# Pages style
# Responsive style
============================================*/
@import url("css2-Montserratwght200300400500600700800900_Poppinswght300400500600700800900_swap.css");
:root {
  --body-font-primary: "Poppins", sans-serif;
  --body-font-secondary: "Montserrat", sans-serif;
  --body-line-height: 1.5;
  --heading-line-height: 1.2;
  --body-font-size: 18px;
  --color-white: #ffffff;
  --theme-body-bg: #ffffff;
  --theme-custom-bg: #F8FCFF;
  --theme-custom-bg2: #1C1C1C;
  --theme-footer-bg: #020416;
  --theme-body-color: #666666;
  --theme-heading-color: #272727;
  --theme-color: #FF9900;
  --theme-nav-bg-rgba: rgba(0, 0, 0, 0.59);
  --theme-overlay-rgba-color: rgba(5, 68, 96, 0.33);
  --theme-overlay-color: rgba(0, 0, 0, 0.74);
  --theme-active-color: #FF9900;
  --theme-link-color: #FF9900;
  --theme-link-hover-color: #FF9900 ;
  --theme-placeholder-color: #FFFFFF;
  --filter-img-color-light: brightness(0) invert(1);
}

a {
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
a:focus, a:hover {
  outline: none;
}

p {
  line-height: var(--body-line-height);
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.fluid_img {
  max-width: 100%;
  min-height: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

input,
textarea {
  width: 100%;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--theme-placeholder-color) !important;
  opacity: 1;
  font-size: var(--body-font-size);
}
input::placeholder,
textarea::placeholder {
  color: var(--theme-placeholder-color) !important;
  opacity: 1;
  font-size: var(--body-font-size);
}
input:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: none;
}

.form-select {
  color: var(--theme-placeholder-color) !important;
  font-size: var(--body-font-size);
  background-size: 16px 15px;
}
.form-select option {
  color: var(--theme-body-color) !important;
}
.form-select:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

button {
  border: none;
}
button:focus {
  outline: none !important;
}

.form-control {
  background: transparent;
  padding: 16px;
  font-size: var(--body-font-size);
  font-weight: 500;
  font-family: var(--body-font-primary);
  border: none;
  color: #ffffff !important;
  transition: all 0.3s ease;
  border-radius: 0;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  background: transparent;
}

ul {
  list-style-type: none;
}

.card {
  border: none;
  background: #fff;
  padding: 20px;
}
.card .card_img img {
  width: 100%;
  box-shadow: 0px 4px 20px rgba(130, 130, 130, 0.25);
}
.card .card-body {
  padding: 0;
  padding-top: 16px;
}

*::-webkit-scrollbar {
  width: 0.4vw;
  height: 16px;
}

*::-webkit-scrollbar-thumb {
  background: #434343;
  border-radius: 16px;
  box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}

*::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #434343, #434343 1px, #111 0, #111);
}

#pre_loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  overflow: visible;
  background: url(../image/preloader.gif) no-repeat center center;
  background-size: 20%;
  background-color: #e5eff1;
}

.scrollToTop {
  position: fixed;
  right: 30px;
  bottom: 0;
  width: 45px;
  height: 45px;
  line-height: var(--body-line-height);
  border-radius: 5px;
  background-color: #3A79F9;
  font-size: 20px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  color: #fff !important;
  transition: 0.3s;
  transform: translateY(100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.scrollToTop:hover {
  color: #fff !important;
}
.scrollToTop:focus {
  color: #fff !important;
}

.topActive {
  bottom: 30px;
  transform: translateY(0%);
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
}

.alert {
  transition: 1s;
  margin-bottom: -20px;
  margin-top: 10px;
  display: block;
}

.in-box {
  position: relative;
}
.in-box label {
  position: absolute;
  left: 0;
}

label.error {
  color: red;
  font-size: 14px;
}

.message-error.error {
  position: absolute;
  color: red;
  font-size: 14px;
}

.btn_theme {
  border: none;
  outline: none;
  padding: 20px 40px;
  font-size: var(--body-font-size);
  font-family: var(--body-font-secondary);
  font-weight: 500;
  line-height: var(--body-line-height);
  min-width: -moz-max-content;
  min-width: max-content;
  border-radius: 62px;
  transition: all ease-in-out 0.35s;
  outline: 3px solid transparent;
}
.btn_theme:hover {
  outline: 3px solid var(--theme-color);
  outline-offset: 8px;
}

.btn_dark:hover {
  box-shadow: none;
}

.position_relative {
  position: relative;
  z-index: 6;
}

.between_part {
  display: flex;
  gap: 24px;
  align-items: center;
}

.space_between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid_auto_flow {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}

.grid_part_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.grid_part_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.grid_part_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gap30 {
  display: flex;
  gap: 30px;
}

.gap20 {
  display: flex;
  gap: 20px;
}

.gap10 {
  display: flex;
  gap: 10px;
}

.between_gap_20 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.align_gap10 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gap0 {
  display: flex;
  gap: 0;
}

.gap_10 {
  gap: 10px;
}

.title_bg {
  background-color: var(--theme-color);
  width: 104px;
  height: 38px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.title_absolute {
  background-color: var(--theme-color);
  position: absolute;
  top: 30px;
  left: 30px;
  min-width: 104px;
  height: 38px;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.star_review {
  color: #DFDFDF;
  display: flex;
  gap: 6px;
}
.star_review .star_active {
  color: var(--theme-color);
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.social a i {
  font-size: 18px;
  color: var(--color-white);
  transition: 0.2s;
}
.social a:hover {
  border: transparent !important;
}
.social a:hover i {
  color: var(--theme-color);
}

.nav_pagination {
  display: flex;
  justify-content: center;
}
.nav_pagination .pagination {
  gap: 16px;
}
.nav_pagination .page-item .page-link {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--theme-heading-color);
  border: none;
  background-color: #D3D3D3;
  filter: drop-shadow(0px 4px 13px rgba(169, 169, 169, 0.24));
}
.nav_pagination .page-item .page-link:hover {
  color: var(--color-white) !important;
  background-color: var(--theme-active-color);
}
.nav_pagination .page-item .page-link:focus {
  box-shadow: none;
  color: var(--color-white) !important;
  background-color: var(--theme-active-color);
}
.nav_pagination .page-item .page-link.active {
  color: #fff !important;
  background: var(--theme-color);
}

.img_icon {
  min-width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.img_icon_rgba {
  min-width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.icon_bg_round {
  height: 33px;
  min-width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.img_gallery {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
.img_gallery .popup_img {
  overflow: hidden;
}
.img_gallery .popup_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  transition: 0.3s;
}
.img_gallery .popup_img:hover::after {
  opacity: 0.1;
}
.img_gallery .popup_img:hover img {
  transform: scale(1.2) rotate(-5deg);
  cursor: zoom-in;
}

.tall {
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}

.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* #Navbar */
.header_area {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header_top {
  background: var(--theme-nav-bg-rgba);
}
.header_top .navbar {
  padding: 0;
  gap: 30px;
}
.header_top .navbar .collapse {
  gap: 30px;
}
.header_top .navbar-toggler {
  font-size: x-large;
  border: none;
  color: #fff;
}
.header_top .navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}
.header_top .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
.header_top .navbar-nav .nav-item .nav-link {
  font-size: var(--body-font-size);
  line-height: var(--heading-line-height);
  font-weight: 600;
  font-family: var(--body-font-secondary);
  color: var(--color-white);
  padding: 38px 10px;
  margin: auto 10px;
  text-transform: capitalize;
}
.header_top .navbar-nav .nav-item .nav-link:focus, .header_top .navbar-nav .nav-item .nav-link:active, .header_top .navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-active-color) !important;
}
.header_top .nav_right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_top .nav_right .bag_icon {
  position: relative;
}
.header_top .nav_right .bag_icon span.nav_icon {
  color: var(--theme-color);
  font-size: 26px;
  cursor: pointer;
}
.header_top .nav_right .bag_icon .nav_count {
  content: "";
  background: var(--theme-color);
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -10px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.header_top .nav_right .nav_search_box .in-box {
  display: flex;
  gap: 10px;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 42px;
}
.header_top .nav_right .nav_search_box .in-box .form-control {
  padding: 0;
}
.header_top .nav_right .nav_search_box .in-box .nav_search_icon {
  color: var(--theme-color);
  background: transparent;
  font-size: 1.375rem;
  padding: 0;
}

.header_bottom {
  height: 50px;
  background: var(--theme-color);
  display: flex;
  align-items: center;
}
.header_bottom .social a i {
  color: var(--theme-heading-color);
}
.header_bottom .social a i:focus, .header_bottom .social a i:hover {
  color: rgba(39, 39, 39, 0.74) !important;
}
.header_bottom .address span {
  color: var(--theme-heading-color);
}
.header_bottom .address a {
  color: var(--theme-heading-color);
}
.header_bottom .address a:focus, .header_bottom .address a:hover {
  color: rgba(39, 39, 39, 0.8235294118) !important;
}

.nav_fixed {
  position: fixed;
  top: -70px;
  width: 100%;
  transform: translateY(70px);
  transition: transform 0.5s;
  background: #1C1C1C;
}

.active {
  color: var(--theme-color);
  transition: 0.3s all ease;
}

.bottom_subscribe_area {
  background: url(../image/footer_top_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}
.bottom_subscribe_area::before {
  content: "";
  position: absolute;
  background: var(--theme-overlay-color);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bottom_subscribe_area .subscribe {
  text-align: center;
}
.bottom_subscribe_area .subscribe .frmSubscribe {
  width: 65%;
  margin: auto;
}
.bottom_subscribe_area .subscribe .frmSubscribe .in-box .form-control {
  border-radius: 3.875rem;
  padding: 0;
  border: 1px solid #fff;
  padding: 12px 20px;
}
.bottom_subscribe_area .subscribe .frmSubscribe .in-box .btn_theme {
  box-shadow: none;
  padding: 14px 30px;
}

.footer_area {
  background: var(--theme-footer-bg);
}
.footer_area a, .footer_area p, .footer_area .footer_title {
  color: #fff;
}
.footer_area .company .footer_content {
  color: #C6C6C6;
}
.footer_area .footer_menu {
  margin: 0 auto;
}
.footer_area .footer_menu .menu_items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_area .footer_menu .menu_items a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #C6C6C6;
}
.footer_area .footer_menu .menu_items a::before {
  content: "";
  background: var(--theme-color);
  width: 12px;
  height: 1.5px;
}
.footer_area .footer_menu .menu_items a:hover {
  color: #fff !important;
}
.footer_area .footer_contact span {
  color: var(--theme-color);
}
.footer_area .footer_contact a:hover {
  color: #fff !important;
}
.footer_area .footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
}
.footer_area .footer_bottom .copyright {
  color: var(--color-white);
}

@media (max-width: 1399px) {
  .bottom_subscribe_area .subscribe .frmSubscribe {
    width: 80%;
  }
}
@media (max-width: 1199px) {
  .header_top .navbar-nav .nav-item .nav-link {
    padding: 35px 5px;
  }
  .bottom_subscribe_area .subscribe .frmSubscribe {
    width: 85%;
  }
}
@media (max-width: 991px) {
  .header_top {
    background: var(--theme-footer-bg);
  }
  .header_top .nav_right {
    margin-top: 15px;
  }
  .header_top.nav_fixed {
    position: absolute;
    top: 0;
    transform: translateY(0);
  }
  .header_top .navbar {
    padding: 20px 0px;
    gap: 0;
  }
  .header_top .navbar .navbar-nav {
    margin-top: 20px;
  }
  .header_top .navbar .btn_nav {
    display: none;
  }
  .header_top .navbar .nav-item {
    display: block;
  }
  .header_top .navbar .nav-item .nav-link {
    padding: 12px 0;
    width: 100%;
    justify-content: start;
  }
  .footer_area .grid_part_3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .topActive {
    bottom: 70px;
  }
  .cuatom_btn {
    display: none;
  }
  .nav_header {
    background-color: #000;
  }
  .nav_header .navbar-brand img {
    width: 200px;
  }
  .footer_area .grid_part_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer_area .grid_part_3 .footer_title {
    margin-bottom: 30px;
  }
  .bottom_subscribe_area {
    padding: 60px 20px;
  }
}
@media (max-width: 575px) {
  .bottom_subscribe_area {
    padding: 50px 20px;
  }
  .bottom_subscribe_area .subscribe .frmSubscribe {
    width: 90%;
  }
  .bottom_subscribe_area .subscribe .frmSubscribe .in-box {
    gap: 10px;
  }
  .bottom_subscribe_area .subscribe .frmSubscribe .in-box .form-control {
    padding: 8px 20px;
  }
  .bottom_subscribe_area .subscribe .frmSubscribe .in-box .btn_theme {
    padding: 9px 30px;
  }
}
@media (max-width: 479px) {
  .topActive {
    bottom: 30px;
  }
  .header_top .navbar .navbar-brand {
    width: 60%;
  }
  .header_top .navbar-toggler {
    font-size: 22px;
  }
  .bottom_subscribe_area .subscribe .frmSubscribe {
    width: 100%;
  }
  .bottom_subscribe_area .subscribe .frmSubscribe .in-box {
    flex-wrap: wrap;
    gap: 0;
  }
  .bottom_subscribe_area .subscribe .frmSubscribe .in-box .form-control {
    height: 70px;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .bottom_subscribe_area .subscribe .frmSubscribe .in-box .btn_theme {
    width: 100%;
    border-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .footer_area .grid_part_3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .footer_area .grid_part_3 .footer_menu {
    margin: 0;
  }
  .footer_area .footer_bottom {
    display: inline-grid;
    gap: 20px;
    width: 100%;
  }
  .footer_area .footer_bottom .social.between_part {
    gap: 15px;
  }
}
body {
  background-color: var(--theme-body-bg);
  color: var(--theme-body-color);
}

h1,
h1 > a,
h2,
h2 > a,
h3,
h3 > a,
h4,
h4 > a,
h5,
h5 > a,
h6,
h6 > a {
  color: var(--theme-heading-color);
}

a {
  color: var(--theme-link-color);
}
a:focus, a:hover {
  color: var(--theme-link-hover-color) !important;
}

p {
  color: var(--theme-body-color);
}

.active {
  color: var(--theme-active-color) !important;
}

.btn_theme {
  background: var(--theme-color);
  color: var(--color-white);
}
.btn_theme:hover, .btn_theme:focus {
  color: var(--color-white) !important;
}

.custom_color {
  color: var(--theme-color);
}

.img_icon {
  background: var(--theme-color);
}

.img_icon_rgba {
  background: var(--theme-color-rgba);
}

.icon_bg_round {
  background-color: var(--secondary-color);
}

.custon_color {
  color: var(--theme-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
  background: var(--theme-color);
  color: #fff;
  min-width: 28px;
  height: 28px;
  border-radius: 2px;
}

.hero_section {
  position: relative;
}
.hero_section .swiper-slide img {
  min-height: 100vh;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_section .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: var(--theme-overlay-rgba-color);
  z-index: 1;
}
.hero_section .swiper_pagination_hero {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_section .hero_text {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 180px;
  padding-bottom: 90px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.hero_section .hero_text .hero_title,
.hero_section .hero_text .hero_content {
  color: #fff;
}
.hero_section .hero_text .hero_title {
  max-width: 18ch;
}
.hero_section .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.hero_section .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  height: 17px;
  width: 17px;
  opacity: 1;
  background: #fff;
  z-index: 9;
}
.hero_section .swiper-pagination-bullet-active {
  background: var(--theme-color) !important;
  height: 23px !important;
  width: 23px !important;
}

.power_saving_section {
  margin-top: 80px;
}
.power_saving_section .part .img_icon {
  height: 110px;
  width: 110px;
  border-radius: 30px;
  box-shadow: 0px 4px 27px rgba(255, 153, 0, 0.26);
}

.about_section {
  background: url(../image/about_bg.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.about_section .about_img_area {
  position: relative;
}
.about_section .about_img_area .exprience {
  padding: 18px 24px 40px;
  background: var(--theme-color);
  max-width: 170px;
  box-shadow: 0px 4px 16px rgba(255, 199, 0, 0.33);
  border-radius: 5px;
  text-align: center;
  position: absolute;
  left: -70px;
  bottom: -50px;
}
.about_section .about_img_area .exprience .heading_one {
  color: #FFFFFF;
}
.about_section .part {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.company_section .countdown {
  background: #FFFFFF;
  box-shadow: 0px 4px 27px rgba(97, 97, 97, 0.15);
  border-radius: 10px;
  display: flex;
  gap: 35px;
  margin-top: -100px;
}
.company_section .countdown .part + .part {
  padding: 40px 0px;
  margin: auto;
}
.company_section .countdown .countdown_img {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 45px;
}
.company_section .countdown .countdown_img img {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
.company_section .countdown .countdown_img:after {
  content: "";
  position: absolute;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #FFFFFF;
  background: var(--theme-color);
  display: flex;
}

.company_section {
  background: var(--theme-custom-bg);
}
.company_section .img_gallery {
  position: relative;
}
.company_section .img_gallery:after {
  content: "";
  position: absolute;
  width: 161px;
  height: 209px;
  background: var(--theme-color);
  border-radius: 4px;
  top: 15px;
  right: -27px;
}
.company_section .img_gallery .popup_img img {
  box-shadow: 0px 4px 31px rgba(0, 0, 0, 0.17);
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.company_section .img_gallery .popup_img:nth-child(2) {
  margin-top: 45px;
  z-index: 2;
}

.service_section {
  background: url(../image/service_bg.png), url(../image/service_bg2.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, top right;
}
.service_section .service .card {
  border: 1px solid #E0E0E0;
  box-shadow: 0px 4px 29px rgba(101, 99, 99, 0.29);
  border-radius: 20px;
}
.service_section .service .card .card_img img {
  border-radius: 10px;
}
.service_section .service .card .card-body {
  padding-top: 30px;
}
.service_section .service .card .card-body .read_more span {
  transition: all 0.35s;
}
.service_section .service .card .card-body .read_more:hover span {
  transform: translateX(5px);
}
.service_section .service .card .img_icon {
  height: 73px;
  min-width: 73px;
  border-radius: 16px;
}

.power_saving_banner {
  background: url(http://juzhongxin.jhbwtv.top/static/image/cta-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}
.power_saving_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-overlay-color);
}
.power_saving_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
   
  background-size: contain;
}
.power_saving_banner .saving_banner h2 {
  color: #FFFFFF;
}

.protfolio_section {
  background: url(../image/protfolio_bg.png) no-repeat;
  background-position: bottom left;
}
.protfolio_section .img_gallery {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.client_company_section {
  background: var(--theme-custom-bg2);
}

.company_section_managemant {
  background: url(../image/company_bg.png), url(../image/company_bg2.png);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom right, center;
  background-size: contain, cover;
}
.company_section_managemant .management {
  display: flex;
  gap: 24px;
}
.company_section_managemant .management .img_icon {
  border-radius: 16px;
}
.company_section_managemant .company_img img {
  filter: drop-shadow(0px 4px 60px rgba(0, 0, 0, 0.12));
  margin-top: 40px;
}

.review_section .navigate {
  position: relative;
  width: 90px;
}
.review_section .part {
  padding: 30px;
  border: 1px solid #D6D6D6;
  border-radius: 30px;
}
.review_section .part .author {
  border: 4px solid var(--theme-color);
  border-radius: 21px;
}

body {
  font-family: var(--body-font-primary);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: 400;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h1 > a,
h2,
h2 > a,
h3,
h3 > a,
h4,
h4 > a,
h5,
h5 > a,
h6,
h6 > a {
  line-height: var(--heading-line-height);
  font-family: var(--body-font-secondary);
}
h1 span,
h1 > a span,
h2 span,
h2 > a span,
h3 span,
h3 > a span,
h4 span,
h4 > a span,
h5 span,
h5 > a span,
h6 span,
h6 > a span {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

h1,
h1 > a {
  font-weight: 700;
  font-size: 76px;
}

h2,
h2 > a {
  font-weight: 700;
  font-size: 57px;
}

h3,
h3 > a {
  font-weight: 700;
  font-size: 43px;
}

h4,
h4 > a {
  font-weight: 600;
  font-size: 32px;
}

h5,
h5 > a {
  font-size: 24px;
  font-weight: 500;
}

h6,
h6 > a {
  font-size: var(--body-font-size);
  font-weight: 500;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_30 {
  margin-top: 30px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_20 {
  margin-top: 20px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mt_60 {
  margin-top: 60px;
}

.pt_70 {
  padding-top: 70px;
}

.pt_30 {
  padding-top: 30px;
}

.py_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .mb_30 {
    margin-bottom: 28px;
  }
  .mb_24 {
    margin-bottom: 24px;
  }
  .py_30 {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .mb_40 {
    margin-bottom: 37px;
  }
  .mt_40 {
    margin-top: 37px;
  }
  .mb_60 {
    margin-bottom: 44px;
  }
  .mt_60 {
    margin-top: 44px;
  }
  .pt_70 {
    padding-top: 48px;
  }
  .py_60 {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
@media (max-width: 767px) {
  .mb_60 {
    margin-bottom: 40px;
  }
  .mt_60 {
    margin-top: 40px;
  }
  .pt_70 {
    padding-top: 45px;
  }
  .py_60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .mb_30 {
    margin-bottom: 26px;
  }
  .py_30 {
    padding-top: 26px;
    padding-bottom: 26px;
  }
  .mb_40 {
    margin-bottom: 35px;
  }
  .mt_40 {
    margin-top: 35px;
  }
}
.section_large_pb {
  padding-bottom: 260px;
}

.section_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section_pt {
  padding-top: 120px;
}

.section_pt60 {
  padding-top: 60px;
}

.xsmall_text {
  font-size: 14px;
  line-height: 18px;
}

.small_text {
  font-size: 16px;
  line-height: 22px;
}

.normal_text {
  font-family: var(--body-font-secondary);
  font-weight: 600;
  font-size: var(--body-font-size);
  line-height: var(--heading-line-height);
}

.large {
  font-size: 18px;
  line-height: var(--heading-line-height);
}

.x_large {
  font-size: 24px;
  line-height: var(--heading-line-height);
}

.x_large_custom {
  font-weight: 500;
  font-size: 24px;
  font-family: var(--body-font-secondary);
  line-height: var(--heading-line-height);
  color: var(--theme-heading-color);
}

.xx_large_custom {
  font-family: var(--body-font-secondary);
  font-weight: 600;
  font-size: 32px;
  line-height: var(--heading-line-height);
  color: var(--theme-heading-color);
}

.heading_one {
  font-family: var(--body-font-secondary);
  font-weight: 700;
  font-size: 76px;
  line-height: var(--heading-line-height);
  color: var(--theme-heading-color);
}

.font_primary {
  font-family: var(--body-font-secondary);
}

.font_600 {
  font-weight: 600;
}

.font_500 {
  font-weight: 500;
}

.font_400 {
  font-weight: 400;
}

@media (max-width: 1399px) {
  h1,
  h1 > a {
    font-size: 64px;
  }
  h2,
  h2 > a {
    font-size: 48px;
  }
  .heading_one {
    font-size: 64px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 98.5% !important;
  }
  h1,
  h1 > a {
    font-size: 54px;
  }
  h2,
  h2 > a {
    font-size: 40px;
  }
  h3,
  h3 > a {
    font-size: 38px;
  }
  .heading_one {
    font-size: 54px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 97% !important;
  }
  h3,
  h3 > a {
    font-size: 32px;
  }
  h4,
  h4 > a {
    font-size: 24px;
  }
  h5,
  h5 > a {
    font-size: 18px;
  }
  h6,
  h6 > a {
    font-size: 16px;
  }
  .heading_one {
    font-size: 52px;
  }
  .section_large_pb {
    padding-bottom: 60px;
  }
  .section_padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section_pt {
    padding-top: 60px;
  }
  .xsmall_text {
    font-size: 12px;
    line-height: 18px;
  }
  .small_text {
    font-size: 14px;
    line-height: 20px;
  }
  .large {
    font-size: 16px;
    line-height: var(--heading-line-height);
  }
  .x_large {
    font-size: 18px;
    line-height: var(--heading-line-height);
  }
  .x_large_custom {
    font-size: 18px;
  }
  .xx_large_custom {
    font-size: 24px;
  }
  .section_md_pt {
    padding-top: 60px;
  }
  .part_md_pt {
    margin-top: 60px;
  }
  .part_md_pt40 {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 97% !important;
  }
  h3, h3 > a {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h1,
  h1 > a {
    font-size: 40px;
  }
  h2,
  h2 > a {
    font-size: 30px;
  }
  h3,
  h3 > a {
    font-size: 24px;
  }
  h4,
  h4 > a {
    font-size: 20px;
  }
  .heading_one {
    font-size: 40px;
  }
  .large {
    font-size: 16px;
    line-height: var(--heading-line-height);
  }
  .x_large {
    font-size: 17px;
    line-height: var(--heading-line-height);
  }
  .x_large_custom {
    font-size: 17px;
  }
  .xx_large_custom {
    font-size: 20px;
  }
  .part_md_pt {
    margin-top: 40px;
  }
  .part_md_pt40 {
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  h1,
  h1 > a {
    font-size: 32px;
  }
  h2,
  h2 > a {
    font-size: 28px;
  }
  .heading_one {
    font-size: 32px;
  }
}
@media (max-width: 1599px) {
  .about_section .about_img_area .exprience {
    left: -45px;
    bottom: -40px;
  }
}
@media (max-width: 1399px) {
  .about_section .about_img_area .exprience {
    left: -38px;
  }
  .company_section .img_gallery:after {
    height: 175px;
  }
}
@media (max-width: 1199px) {
  .about_section .about_img_area .exprience {
    left: -25px;
  }
  .company_section .countdown .part:first-child {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about_text {
    margin-left: 20px;
  }
  .section_large_pb {
    padding-bottom: 240px;
  }
  .company_section .img_gallery,
  .protfolio_section .img_gallery {
    gap: 12px;
  }
  .service_section .service {
    gap: 16px;
  }
  .service_section .service .card {
    padding: 12px;
  }
  .service_section .service .card .card-body .between_gap_20 {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .grid_part_4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_part_3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .hero_section .swiper_pagination_hero {
    bottom: 30px;
  }
  .about_text {
    margin-top: 80px;
  }
  .company_section .countdown {
    margin-top: 60px;
    padding: 0 30px;
  }
  .company_section_managemant {
    padding-top: 60px;
    background: none;
  }
  .company_section_managemant .company_img {
    display: none;
  }
  .protfolio_section .img_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .service_section .service {
    gap: 24px;
  }
  .btn_theme {
    padding: 15px 35px;
  }
}
@media (max-width: 767px) {
  .hero_section .swiper_pagination_hero {
    bottom: 20px;
  }
  .company_section .countdown .part + .part {
    padding: 30px 0;
  }
  .company_section .img_gallery {
    grid-gap: 10px;
  }
  .protfolio_section .img_gallery {
    gap: 10px;
  }
  .power_saving_banner::after {
    background: none;
  }
}
@media (max-width: 575px) {
  .about_section .about_img_area .exprience {
    left: -10px;
  }
  .company_section .img_gallery:after {
    display: none;
  }
  .company_section .img_gallery .popup_img:nth-child(2) {
    margin-top: 0;
  }
  .service_section .service {
    gap: 16px;
  }
  .service_section .service .card {
    padding: 12px;
  }
  .service_section .service .card .card-body .between_gap_20 {
    gap: 10px;
  }
  .company_section_managemant .management {
    flex-wrap: wrap;
  }
}
@media (max-width: 479px) {
  .btn_theme {
    padding: 12px 30px;
  }
  .grid_part_2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_part_4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_part_3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .company_section .countdown {
    padding: 30px 20px;
    flex-direction: column;
    gap: 40px;
  }
  .company_section .countdown .part + .part {
    padding: 0;
  }
  .img_gallery {
    grid-template-columns: 1fr;
  }
  .about_section .about_img_area .exprience {
    padding: 14px 18px 30px;
    max-width: 145px;
  }
  .protfolio_section .img_gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  .company_section .countdown .part + .part {
    margin: auto 5px;
  }
  .service_section .service {
    gap: 20px;
  }
  .service_section .service .card {
    padding: 20px;
  }
  .service_section .service .card .card-body .between_gap_20 {
    gap: 20px;
  }
  .tall {
    grid-row: auto;
  }
  .wide {
    grid-column: auto;
  }
}/*# sourceMappingURL=style.css.map */