/*
    Template Name    : Electrical Shop
	Description		 : Responsive Electrical Template
    Version          : 1.0
*/
/*
================================================
Table of Content
==================================================

1. SCSS Variable and Mixin
2. Fonts - Poppins and Roboto
3. Globle Style
4. Swiper JS/Slider Style
5. Dropdown Style
6. Pre Loader / Scroll to top
7. Top Bar Style
8. Navbar Menu Style
9. Tabs Menu Style
10. Hero Header Style
11. CTA/Consultation Style
12. Our Services Style
13. Join/CTA Style
14. Our Success Rate Style
15. Testimonials Style
16. How it Works Style
17. Latest Projects Style
18. Booking Estimate Form
19. Our Team Page 
20. Our Clients & Accepted Payment Methods Style
21. Inner Page Style 
21. Breadcrumb Style
22. Accordion Style
23. Error Page
24. Coming Soon Page
25. Pricing Plan Style
26. Contact Us Style
27. Footer Style


*/
/*
================================================
1. SCSS Variable and Mixin
================================================
*/
/*

/*
================================================
2. Fonts - Poppins and Roboto
================================================
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Roboto:wght@300;400;500;700&display=swap");
/*
================================================
3. Globle Style
================================================
*/
html {
  font-size: 14px;
  height: 100%;
}
@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
}

body {
  min-height: 100%;
}

/* width */
::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #212529;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #FF9900;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ffd699;
}

::-moz-selection {
  /* Code for Firefox */
  color: #212529;
  background: #FF9900;
}

::selection {
  color: #212529;
  background: #FF9900;
}

.hover-overlay-container {
  cursor: pointer;
}
.hover-overlay-container .has-img-overlay {
  position: relative;
}
.hover-overlay-container .has-img-overlay:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "\f0339";
  font-family: "Material Design Icons";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 1;
  transition: all 0.2s ease;
  background: rgba(33, 37, 41, 0.7);
  background: linear-gradient(0deg, rgba(33, 37, 41, 0.7) 0%, rgba(33, 37, 41, 0.1) 100%);
  transform: scale(1.01);
  z-index: 2;
}
@media (min-width: 992px) {
  .hover-overlay-container .has-img-overlay:before {
    background-color: rgba(33, 37, 41, 0.75);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85);
  }
}
.hover-overlay-container:hover .has-img-overlay:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1.01);
}

.input-group.input-group-search {
  position: relative;
  border: 1px solid #dee2e6;
}
.input-group.input-group-search .form-control {
  border: none;
  box-shadow: none;
}
.input-group.input-group-search .btn {
  border-radius: 0 !important;
  border: 1px solid #fd7e14;
  background: #fd7e14;
  font-size: 1.25rem;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: -1px;
}
.input-group.input-group-search .btn:not(:hover) {
  background: #fff;
  color: #fd7e14;
  border-color: #dee2e6;
}

.devider {
  min-height: 0.5rem;
  display: flex;
  align-items: center;
  position: relative;
  margin: 1rem 2rem;
}
.devider span {
  border-radius: 0.25rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #FF9900;
  transition: all 0.2s ease;
}
.devider span:before {
  content: "\f0241";
  font-family: "Material Design Icons";
  font-size: 1.5rem;
}
.devider:before, .devider:after {
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  position: absolute;
  background: #FF9900;
  width: 35%;
  transition: all 0.2s ease;
}
.devider:before {
  right: 0px;
  left: -55%;
  margin: 0 auto;
}
.devider:after {
  left: 0px;
  right: -55%;
  margin: 0 auto;
}

.custom-button-style, .ourTeamSlider .slide-nav-buttons .swiper-button-next,
.ourTeamSlider .slide-nav-buttons .swiper-button-prev, .store-buttons a, .btn.btn-el {
  position: relative;
  box-shadow: 0.25rem 0.25rem 0 0 #000;
  transition: all 0.1s ease;
  top: 0;
  left: 0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.custom-button-style:active, .ourTeamSlider .slide-nav-buttons .swiper-button-next:active,
.ourTeamSlider .slide-nav-buttons .swiper-button-prev:active, .store-buttons a:active, .btn.btn-el:active {
  box-shadow: 0px 0px 0px 0px;
  top: 0.25rem;
  left: 0.25rem;
}

a,
.btn {
  transition: all 0.2s ease;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.store-buttons a {
  cursor: pointer;
  background: #343a40;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.store-buttons a:hover {
  background: #FF9900;
}
.store-buttons a:hover:not(:active) {
  box-shadow: 0.25rem 0.25rem 0 0 #804d00;
}
.store-buttons a img {
  display: block;
  height: 3rem;
}

section.section:not(.section-sm) {
  padding: 3rem 0;
}
@media (min-width: 992px) {
  section.section:not(.section-sm) {
    padding: 5rem 0;
  }
}
section.section.section-sm {
  padding: 1rem 0;
}
@media (min-width: 992px) {
  section.section.section-sm {
    padding: 3rem 0;
  }
}
section.section-one-by-two {
  position: relative;
}
section.section-one-by-two .container {
  position: relative;
  z-index: 2;
}
section.section-one-by-two:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #212529;
  content: "";
}
@media (min-width: 992px) {
  section.section-one-by-two:before {
    height: 100%;
    width: calc(50% + 6rem);
  }
}
section.section-top-dark {
  position: relative;
  overflow: hidden;
}
section.section-top-dark .container {
  position: relative;
  z-index: 2;
}
section.section-top-dark:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  bottom: auto;
  min-height: 24rem;
  height: 55%;
  background: #212529;
}
section.section-oc-pm .sub-section .subtitle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.5rem 0 1.5rem 0;
  color: #6c757d;
}
section.section-oc-pm .sub-section .subtitle span {
  position: relative;
  z-index: 2;
  padding: 0.25rem 1.5rem;
  background-color: #fff;
}
section.section-oc-pm .sub-section .subtitle::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  height: 1px;
  transform: translateY(-50%);
  background-color: #e9ecef;
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  color: #adb5bd;
  font-size: 0.875rem;
}
.section-header p {
  max-width: 600px;
  margin: 1rem 0 0 0;
  margin-left: auto;
  margin-right: auto;
}
.section-header .section-header-title {
  display: flex;
}
.section-header .section-header-title h6 {
  color: #fd7e14;
  font-weight: 400;
}
.section-header .section-header-title h2 {
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.section-header .section-header-title .heading-content {
  position: relative;
  overflow: hidden;
}
.section-header .section-header-title .heading-content h6 {
  padding: 0 2rem;
  margin: 0;
  line-height: 1rem;
  margin-bottom: -0.5rem;
}
.section-header .section-header-title .heading-content h6 span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-header .section-header-title .heading-content h6 span:before, .section-header .section-header-title .heading-content h6 span:after {
  content: "";
  position: absolute;
  width: 2000px;
  height: 1px;
  background-color: #fd7e14;
  top: 1px;
  bottom: 0;
  margin: auto;
}
.section-header .section-header-title .heading-content h6 span:before {
  right: calc(100% + 1rem);
}
.section-header .section-header-title .heading-content h6 span:after {
  left: calc(100% + 1rem);
}
.section-header .section-header-title .heading-content h2 {
  padding: 1rem 2rem;
  border: 1px solid #fd7e14;
  border-top: none;
}
.section-header.light .section-header-title h2 {
  color: #fff;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-header-title {
  justify-content: center;
}
.section-header.left {
  text-align: left;
}
.section-header.left p {
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.section-header.left .section-header-title {
  justify-content: flex-start;
}
.section-header.right {
  text-align: right;
}
.section-header.right p {
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.section-header.right .section-header-title {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

.section-col-img {
  width: 100%;
  height: 100%;
}
.section-col-img img {
  display: block;
  box-shadow: 1rem 1rem 0 #212529;
  width: 100%;
}
@media (min-width: 992px) {
  .section-col-img.img-right {
    padding-right: 1rem;
  }
  .section-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: right;
  }
}

.form-control:not(.form-control-lg):not(.form-control-sm) {
  border-radius: 0;
  padding: 0.75rem;
  resize: none;
}

.form-select {
  border-radius: 0;
  padding: 0.75rem;
  resize: none;
}

textarea.form-control {
  min-height: 8rem;
}

.input-group.input-group-el {
  border: 1px solid #dee2e6;
  position: relative;
  background-color: #fff;
}
.input-group.input-group-el .form-control,
.input-group.input-group-el .input-group-text {
  border: none;
  background: transparent;
}
.input-group.input-group-el .input-group-text {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495057;
}
.input-group.input-group-el:not(.input-group-lg):not(.input-group-sm) .input-group-text {
  width: 3.5rem;
  font-size: 1.25rem;
}
.input-group.input-group-el:not(.input-group-lg):not(.input-group-sm) .form-control {
  padding: 0.75rem;
  padding-left: 3.5rem;
  min-height: 3.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.social-link a {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 0.125rem;
  font-size: 1rem;
  color: #6c757d;
}
.social-link a:hover {
  color: #fff;
  background-color: #FF9900;
}

.card.card-el {
  border-color: #e9ecef;
  box-shadow: 0 0.25rem 0.5rem rgba(var(--bs-body-color-rgb), 0.1);
}
.card.card-items {
  box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
  position: relative;
  top: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.card.card-items .categories {
  font-size: 0.875rem;
  color: #6c757d;
}
.card.card-items > .image-container {
  position: relative;
  overflow: hidden;
}
.card.card-items > .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.8s ease;
  transform: scale(1);
  aspect-ratio: 1/0.75;
}
.card.card-items > .image-container:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(33, 37, 41, 0.8);
  z-index: 2;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: all 0.2s ease;
}
.card.card-items .card-body .title {
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}
.card.card-items .card-body p {
  font-size: 0.875rem;
  color: #6c757d;
}
.card.card-items .card-footer {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  color: #6c757d;
  font-size: 0.875rem;
}
.card.card-items .card-footer .footer-start {
  flex: 1 1 auto;
}
.card.card-items .card-footer .footer-start,
.card.card-items .card-footer .footer-end {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.card.card-items .card-footer .footer-start span,
.card.card-items .card-footer .footer-end span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.card.card-items:hover {
  box-shadow: 0 0.25rem 0.5rem rgba(var(--bs-body-color-rgb), 0.1);
  top: -0.25rem;
  border-color: #fd7e14;
}
.card.card-items:hover > .image-container img {
  transform: scale(1.2);
}
.card.card-items:hover > .image-container:before {
  opacity: 1;
}
.card.card-items:hover .card-body .title {
  color: #fd7e14;
}

/* Custom Bootstrap Datepicker */
.datepicker.datepicker-dropdown {
  border-radius: 0;
  box-shadow: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);
  border: none;
}
.datepicker.datepicker-dropdown:before {
  border: none;
}
.datepicker.datepicker-dropdown table {
  font-size: 1rem;
}
.datepicker.datepicker-dropdown table tr th {
  padding: 0.75rem;
  font-weight: 600;
  color: #495057;
}
.datepicker.datepicker-dropdown table tr th.prev, .datepicker.datepicker-dropdown table tr th.next {
  font-size: 1.25rem;
  line-height: 1.25rem;
}
.datepicker.datepicker-dropdown table tr td {
  padding: 0.75rem;
  font-size: 0.875rem;
}
.datepicker.datepicker-dropdown table tr td.active {
  background: #fd7e14;
  background: linear-gradient(0deg, #fd7e14 0%, #fd9a47 100%);
}
.datepicker.datepicker-dropdown table tr td.active:hover {
  background: #fd7e14;
  background: linear-gradient(0deg, #fd7e14 0%, #dc6502 100%);
}

/*
================================================
4. Swiper JS/Slider Style
================================================
*/
.swiper .swiper-pagination-bullet {
  transition: all 0.2s ease;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  opacity: 0.1;
}
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FF9900;
  opacity: 1;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  padding: 1.5rem;
  font-size: 1rem;
  --swiper-navigation-size: 1.5rem;
  transition: all 0.2s ease;
  border-radius: 0.375rem;
}
.swiper.headerCarousel .swiper-pagination-bullet {
  width: 0.25rem;
  height: 0.25rem;
  background: #fff;
  opacity: 0.5;
}
.swiper.headerCarousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 3rem;
}
.swiper.headerCarousel .swiper-button-next,
.swiper.headerCarousel .swiper-button-prev {
  color: #fff;
  background: #FF9900;
  border: 1px solid #ff9900;
}
.swiper.headerCarousel .swiper-button-next:not(:hover),
.swiper.headerCarousel .swiper-button-prev:not(:hover) {
  background: rgba(255, 153, 0, 0);
  border: 1px solid rgba(255, 153, 0, 0);
  color: rgba(255, 255, 255, 0.5);
}
.swiper.headerCarousel .swiper-button-next:not(:hover) {
  right: -1rem;
}
.swiper.headerCarousel .swiper-button-prev:not(:hover) {
  left: -1rem;
}

/*
================================================
5. Dropdown Style
================================================
*/
.dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dropdown .dropdown-toggle:not(.no-icon):after {
  content: "\f0140";
  border: none;
  font-family: "Material Design Icons";
  transition: all 0.2s ease;
}
.dropdown .dropdown-toggle.no-icon::after {
  display: none;
}

@media (min-width: 992px) {
  .dropdown-menu {
    box-shadow: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);
  }
}
.dropdown-menu .dropdown-item {
  font-weight: 500;
}

/*
================================================
6. Pre Loader / Scroll to top
================================================
*/
.pre-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 37, 41, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}
.pre-loading .loading {
  border: 0.25rem solid #343a40;
  border-top: 0.25rem solid #FF9900;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#scrollUp {
  right: 1rem;
  bottom: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.8;
  box-shadow: 0.25rem 0.25rem 0 0 #000;
  text-align: center;
  line-height: 2.5rem;
  background: #bd2130;
  color: rgba(255, 255, 255, 0.5);
}
#scrollUp:hover {
  background: #dc3545;
  color: #fff;
}

/*
================================================
7. Top Bar Style
================================================
*/
.top-bar {
  padding: 0.25rem 0;
}
.top-bar .btn {
  color: #fff;
  box-shadow: none;
  border: none;
}
.top-bar .btn.btn-sm {
  padding-top: 0;
  padding-bottom: 0;
}

/*
================================================
8. Navbar Menu Style
================================================
*/
.navbar {
  box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
}
.navbar .navbar-brand img {
  height: 2rem;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  font-size: 0.875rem;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #FF9900;
}
.navbar .navbar-nav .nav-item:hover .nav-link {
  color: #FF9900;
}
@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 1.125rem 1.5rem;
    border: 0.25rem solid transparent;
    border-radius: 0;
  }
  .navbar .navbar-nav .nav-item .nav-link.active {
    border-bottom-color: #FF9900;
  }
  .navbar .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    top: 110%;
    visibility: hidden;
    transition: all 0.2s ease;
    transform: scale(0.9);
  }
  .navbar .dropdown .dropdown-menu .dropdown-item {
    color: #fd7e14;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item:not(:hover):not(:active) {
    color: #495057;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item.active {
    background-color: #fff;
    color: #fd7e14;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .navbar .dropdown .dropdown-menu .dropdown-item.active:not(:hover):not(:active) {
    background-color: #fff;
    color: #fd7e14;
  }
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* remove the gap so it doesn't close */
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: scale(1);
  }
}

/*
9. Tabs Menu Style
================================================
*/
.nav.nav-tabs.nav-ev {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
  gap: 1rem;
}
.nav.nav-tabs.nav-ev .nav-link {
  border: none;
  background: none;
  position: relative;
  margin: 0;
  padding: 0.75rem 3rem;
  font-weight: 400;
  z-index: 2;
  background: transparent;
}
.nav.nav-tabs.nav-ev .nav-link span {
  position: relative;
  z-index: 1;
}
.nav.nav-tabs.nav-ev .nav-link:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.2s ease;
  bottom: -0.125rem;
  border-radius: 1rem;
  content: "";
  transform-origin: 90px 0;
  transform: perspective(8px) rotateX(0.9deg) translateZ(-1px);
}
.nav.nav-tabs.nav-ev .nav-link:not(.active):not(.cbp-filter-item-active) {
  color: #adb5bd;
  cursor: pointer;
}
.nav.nav-tabs.nav-ev .nav-link:not(.active):not(.cbp-filter-item-active)::after {
  background-color: #495057;
}
.nav.nav-tabs.nav-ev .nav-link:not(.active):not(.cbp-filter-item-active):hover::after {
  background-color: #606a73;
}
.nav.nav-tabs.nav-ev .nav-link.active, .nav.nav-tabs.nav-ev .nav-link.cbp-filter-item-active {
  color: #fff;
}
.nav.nav-tabs.nav-ev .nav-link.active::after, .nav.nav-tabs.nav-ev .nav-link.cbp-filter-item-active::after {
  background-color: #fd7e14;
}

/*
================================================
10. Hero Header Style
================================================
*/
.hero-header .swiper {
  height: 100%;
}
.hero-header .slide-img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-header .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-header .slide-img::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(26, 15, 0, 0.8);
}
.hero-header .slide-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-bottom: 4rem;
  height: 100%;
}
.hero-header .slide-content .container {
  height: 100%;
}
.hero-header .slide-content .container .row {
  height: 100%;
}
.hero-header .slide-content .graphic {
  padding: 3rem;
}
.hero-header .slide-content .text-content h5 {
  font-weight: 300;
  text-transform: uppercase;
}
.hero-header .slide-content .text-content h1 {
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 0 white;
}
@media (min-width: 992px) {
  .hero-header .slide-content .text-content h1 {
    font-size: 4rem;
    margin-bottom: 3rem 0;
  }
}
.hero-header .slide-content .text-content p {
  font-size: 0.875rem;
}
.hero-header .slide-content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.hero-header .slide-content .buttons .btn {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .hero-header .slide-content .buttons {
    margin-top: 2rem;
  }
  .hero-header .slide-content .buttons .btn {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .hero-header .slide-content {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .hero-header {
    height: 75vh;
    min-height: 500px;
  }
}

/*
================================================
11. CTA/Consultation Style
================================================
*/
.consultation-section {
  background: #fff;
  padding: 2rem 0;
  background: #fff5e6;
}
@media (min-width: 992px) {
  .consultation-section {
    padding: 3rem 0;
  }
}
.consultation-section .quote {
  margin: 0;
  font-weight: 700;
}

.cta.cta-with-icon {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
}
.cta.cta-with-icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF9900;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  color: #663d00;
}
.cta.cta-with-icon .text h6,
.cta.cta-with-icon .text p {
  margin: 0;
}
.cta.cta-with-icon .text h6 {
  font-weight: 700;
  margin-bottom: 0.125rem;
}
.cta.cta-with-icon .text p {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 400;
}
.cta.cta-with-icon .text p a {
  text-decoration: none;
  color: #FF9900;
}
.cta.cta-with-icon .text p a:not(:hover) {
  color: #6c757d;
}

/*
================================================
12. Our Services Style
================================================
*/
.card.card-service {
  position: relative;
  min-height: 200px;
  cursor: pointer;
}
.card.card-service .card-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.card.card-service .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.2s ease;
  display: block;
  transform: scale(1);
}
.card.card-service .card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(33, 37, 41, 0.95);
  background: linear-gradient(0deg, rgba(33, 37, 41, 0.95) 0%, rgba(33, 37, 41, 0.2) 100%);
  color: #fff;
}
.card.card-service .card-body:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(33, 37, 41, 0.2);
  background: linear-gradient(0deg, rgba(33, 37, 41, 0.2) 0%, rgba(33, 37, 41, 0.95) 100%);
  opacity: 0;
  transition: all 0.2s ease;
  visibility: hidden;
  z-index: 0;
  backdrop-filter: blur(3px);
}
.card.card-service .card-body * {
  position: relative;
  z-index: 2;
}
.card.card-service .card-body .icon {
  color: #212529;
  background: #ffb84d;
  margin-right: auto;
  font-size: 1.75rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
  color: #4d2e00;
  border-radius: 50%;
}
.card.card-service .card-body h5 {
  margin: 0 0 0.25rem;
}
.card.card-service .card-body p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.card.card-service:hover img {
  transform: scale(1.2);
}
.card.card-service:hover .card-body::before {
  opacity: 1;
  visibility: visible;
}
.card.card-service:hover .card-body .icon {
  background: #fff;
  animation: uu5o8a0 2s infinite;
  color: #FF9900;
}
@keyframes uu5o8a0 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/*
================================================
13. Join/CTA Style
================================================
*/
.section-join-cta {
  position: relative;
  background-image: url("../imgs/funciones-oficial-primera-electricista.jpg");
  background-size: cover;
  background-position: center right;
}
.section-join-cta .container {
  position: relative;
  z-index: 3;
}
.section-join-cta::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
}
.section-join-cta .contact-information {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .section-join-cta .contact-information {
    font-size: 4rem;
  }
}
.section-join-cta .contact-information a {
  text-decoration: none;
}

/*
================================================
14. Our Success Rate Style
================================================
*/
.section-success-rate {
  background-image: url("../imgs/services/service-inverter-stabilizer.jpg");
  position: relative;
}
.section-success-rate::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(33, 37, 41, 0.95);
  backdrop-filter: blur(5px);
}
.section-success-rate .container {
  position: relative;
}
.section-success-rate .container .sr-item {
  color: #fff;
  text-align: center;
  position: relative;
}
.section-success-rate .container .sr-item .icon {
  font-size: 3rem;
  transition: all 0.2s ease;
  transform: scale(1);
}
.section-success-rate .container .sr-item:hover .icon {
  transform: scale(1.2);
}
.section-success-rate .container .sr-item:hover .devider:before, .section-success-rate .container .sr-item:hover .devider:after {
  width: 25%;
  background: #fd7e14;
}
.section-success-rate .container .sr-item:hover .devider span {
  color: #dc3545;
}
.section-success-rate .container .sr-item h6 {
  font-weight: 300;
  font-weight: 300;
}

/*
================================================
15. Testimonials Style
================================================
*/
.testimonial-item {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.testimonial-item p {
  color: #6c757d;
  font-weight: 300;
  line-height: 1.5;
  font-size: 1.125rem;
}
.testimonial-item p.message {
  position: relative;
}
.testimonial-item p.message::before {
  content: "\f11a7";
  font-family: "Material Design Icons";
  color: rgba(33, 37, 41, 0.05);
  font-size: 12rem;
  line-height: 12rem;
  position: absolute;
  left: -3rem;
  top: -6rem;
}
.testimonial-item .user-img {
  margin: 1rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 3rem;
  outline: 0.325rem solid #dc3545;
  transform: scale(1);
  transition: all 0.2s ease;
}
.testimonial-item .user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}
.testimonial-item .name {
  margin-bottom: 1rem;
  font-weight: 700;
}
.testimonial-item .domain p {
  margin: 0;
  font-weight: 300;
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .testimonial-item {
    margin-top: 2rem;
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .testimonial-item p {
    font-size: 1.375rem;
  }
  .testimonial-item .user-img {
    margin: 2rem auto;
    width: 8rem;
    height: 8rem;
    border-radius: 7rem;
  }
  .testimonial-item:hover .user-img {
    animation: uu5o8aj 2s infinite;
  }
  @keyframes uu5o8aj {
    0% {
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
    70% {
      box-shadow: 0 0 0 3rem rgba(220, 53, 69, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
  }
}

/*
================================================
16. How it Works Style
================================================
*/
.how-it-works-flow {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.how-it-works-flow li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 2rem;
  margin-top: 3rem;
}
.how-it-works-flow li .process-item {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-it-works-flow li .process-item .icon {
  width: 6rem;
  height: 6rem;
  border-radius: 3rem;
  margin-left: auto;
  margin-right: auto;
  color: #ffd699;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background-color: #331f00;
  border: 0.125rem solid rgba(255, 153, 0, 0.1);
  transition: all 0.2s ease;
}
.how-it-works-flow li .process-item h6 {
  color: #fff;
  margin: 1rem 0;
  font-weight: 500;
}
.how-it-works-flow li .process-item h6 span {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #ffedde;
  color: #fd7e14;
  font-size: 80%;
  margin-inline-end: 0.5rem;
  border: 1px solid #fd7e14;
  transition: all 0.2s ease;
}
.how-it-works-flow li .process-item p {
  font-size: 0.875rem;
  font-weight: 300;
  color: #adb5bd;
}
.how-it-works-flow li .process-item:hover .icon {
  animation: uu5o8be 2s infinite;
  background: #fd7e14;
  color: #fff;
}
@keyframes uu5o8be {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 126, 20, 0.4);
  }
  70% {
    box-shadow: 0 0 0 3rem rgba(253, 126, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 126, 20, 0);
  }
}
.how-it-works-flow li .process-item:hover h6 span {
  background: #fd7e14;
  color: #fff;
}
@media (min-width: 768px) {
  .how-it-works-flow {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .how-it-works-flow {
    flex-wrap: nowrap;
  }
  .how-it-works-flow li {
    position: relative;
  }
  .how-it-works-flow li + li:before {
    position: absolute;
    content: "";
    width: 9rem;
    top: 3rem;
    left: -4.5rem;
    bottom: auto;
    height: 1px;
    border-bottom: 1px dashed #fd7e14;
    z-index: 0;
  }
  .how-it-works-flow li + li:after {
    content: "\f19b0";
    font-family: "Material Design Icons";
    position: absolute;
    left: -0.9rem;
    color: #fd7e14;
    font-size: 2rem;
    top: 1.55rem;
  }
}

/*
================================================
17. Latest Projects Style
================================================
*/
.card-project-gallery-item {
  position: relative;
  border: none;
  height: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);
  overflow: hidden;
  color: #fff;
  cursor: zoom-in;
}
.card-project-gallery-item .image-info {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.8s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.card-project-gallery-item .image-info h5 {
  font-weight: 500;
}
.card-project-gallery-item .image-info p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 0.7;
}
@media (min-width: 992px) {
  .card-project-gallery-item .image-info {
    padding-bottom: 0;
    opacity: 0;
  }
}
.card-project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.8s ease;
  transform: scale(1.01);
}
.card-project-gallery-item.has-overlay::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: 1;
  transition: all 0.2s ease;
  background: rgba(33, 37, 41, 0.9);
  background: linear-gradient(0deg, rgba(33, 37, 41, 0.9) 0%, rgba(33, 37, 41, 0.1) 100%);
  transform: scale(1.01);
}
@media (min-width: 992px) {
  .card-project-gallery-item.has-overlay::before {
    background-color: rgba(33, 37, 41, 0.75);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
  }
}
@media (min-width: 992px) {
  .card-project-gallery-item:hover img {
    transform: scale(1.2);
  }
  .card-project-gallery-item:hover.has-overlay:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1.01);
  }
  .card-project-gallery-item:hover .image-info {
    opacity: 1;
    padding-bottom: 1.5rem;
  }
}

/*
================================================
18. Booking Estimate Form
================================================
*/
.section.section-booking-form-estimate {
  padding-top: 0 !important;
}

.section-booking-form-estimate .nav {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .section-booking-form-estimate .nav {
    margin-bottom: 5rem;
  }
}
.section-booking-form-estimate .nav:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  bottom: 50%;
  content: "";
  background: #212529;
}
.section-booking-form-estimate .service-img-container {
  margin-bottom: -5rem;
}
.section-booking-form-estimate .service-img-container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*
================================================
19. Our Team Page
================================================
*/
.ourTeamSlider .slide-nav-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.ourTeamSlider .slide-nav-buttons .swiper-button-next,
.ourTeamSlider .slide-nav-buttons .swiper-button-prev {
  position: unset;
  margin: 0;
  background: #FF9900;
  color: rgba(33, 37, 41, 0.5);
  border-radius: 0;
  position: relative;
}
.ourTeamSlider .slide-nav-buttons .swiper-button-next:active,
.ourTeamSlider .slide-nav-buttons .swiper-button-prev:active {
  background-color: #fd7e14;
}
.ourTeamSlider .slide-nav-buttons .swiper-button-next:hover,
.ourTeamSlider .slide-nav-buttons .swiper-button-prev:hover {
  color: #212529;
}

.our-team-item {
  position: relative;
  border: 1px solid #e9ecef;
  overflow: hidden;
}
.our-team-item > img {
  display: block;
  width: 100%;
  transition: all 0.2s ease;
}
.our-team-item .our-team-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.our-team-item .our-team-body h6 {
  margin: 0 0 0.25rem 0;
}
.our-team-item .our-team-body p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}
.our-team-item .our-team-body .social-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.our-team-item .our-team-body .social-link a {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: #fff;
  border-radius: 0.125rem;
}
.our-team-item .our-team-body .social-link a.twitter {
  background-color: #1da1f2;
}
.our-team-item .our-team-body .social-link a.google {
  background-color: #ea4335;
}
.our-team-item .our-team-body .social-link a.linkedin {
  background-color: #0a66c2;
}
.our-team-item .our-team-body .social-link a.instagram {
  background-color: #c32aa3;
}
.our-team-item .our-team-body .social-link a.facebook {
  background-color: #3b5998;
}
.our-team-item .our-team-body .social-link a:hover {
  color: #fff;
}
.our-team-item .our-team-body .social-link a:hover.twitter {
  background-color: #0d8cda;
}
.our-team-item .our-team-body .social-link a:hover.google {
  background-color: #df2717;
}
.our-team-item .our-team-body .social-link a:hover.linkedin {
  background-color: #08529b;
}
.our-team-item .our-team-body .social-link a:hover.instagram {
  background-color: #a12387;
}
.our-team-item .our-team-body .social-link a:hover.facebook {
  background-color: #30487b;
}
@media (min-width: 992px) {
  .our-team-item .our-team-body {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all 0.2s ease;
    background-color: rgba(33, 37, 41, 0.75);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    padding-bottom: 0;
    color: #fff;
    opacity: 0;
    bottom: -3rem;
    visibility: hidden;
  }
  .our-team-item .our-team-body .user-details {
    position: relative;
    transition: all 0.7s ease;
    bottom: -5rem;
  }
  .our-team-item .our-team-body .social-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: all 0.7s ease;
  }
  .our-team-item .our-team-body .social-link a {
    position: relative;
    top: 0;
    transition: all 0.2s ease;
  }
  .our-team-item .our-team-body .social-link a:hover {
    top: -0.125rem;
  }
  .our-team-item:hover img {
    transform: scale(1.2);
  }
  .our-team-item:hover .our-team-body {
    opacity: 1;
    bottom: 0;
    visibility: visible;
    padding-bottom: 1.5rem;
  }
  .our-team-item:hover .our-team-body .user-details {
    bottom: 0;
  }
  .our-team-item:hover .our-team-body .social-link {
    transform: translate(-50%, -50%);
  }
}

/*
================================================
20. Our Clients & Accepted Payment Methods Style
================================================
*/
.section-oc-pm {
  /* Payment Method*/
}
.section-oc-pm .logo-action img {
  transition: all 0.2s ease;
  filter: grayscale(100%);
}
.section-oc-pm .logo-action:hover img {
  filter: grayscale(0);
}
.section-oc-pm .pm-item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  transition: all 0.2s ease;
  opacity: 1;
}
.section-oc-pm .pm-item:not(:hover) img {
  filter: grayscale(100%);
  opacity: 0.7;
}
@media (min-width: 992px) {
  .section-oc-pm {
    padding-bottom: 2rem !important;
  }
}

/*
================================================
21. Inner Page Style 
================================================
*/
.section-inner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.section-inner.bg-work {
  background-image: url("../imgs/inner-page/electric-poll.jpg");
}
.section-inner.bg-about {
  background-image: url("../imgs/inner-page/technician.jpg");
}
.section-inner.bg-career {
  background-image: url("../imgs/inner-page/career.jpg");
}
.section-inner::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(33, 37, 41, 0.75);
  backdrop-filter: blur(4px);
}
.section-inner .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.inner-page-header {
  margin-bottom: 1.5rem;
}

.inner-page-wapper .single-image {
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.inner-page-wapper .single-image img {
  aspect-ratio: 1/0.55;
  object-fit: cover;
  display: block;
}
.inner-page-wapper.tab-content .single-image img {
  aspect-ratio: 1/0.75;
}

.custom-list-group {
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-list-group li {
  position: relative;
  padding: 0.5rem;
  font-size: 0.875rem;
  padding-left: 1.5rem;
}
.custom-list-group li::before {
  position: absolute;
  left: 0;
  content: "\f043e";
  border-radius: 50%;
  color: #fd7e14;
  font-family: "Material Design Icons";
}

.inner-wrapper {
  margin-bottom: 1.5rem;
  color: #6c757d;
}
.inner-wrapper .blogger-img img {
  aspect-ratio: 1/0.7;
  display: block;
  object-fit: cover;
}
.inner-wrapper .details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.inner-wrapper .details .label {
  margin: 0;
  font-weight: 500;
}
.inner-wrapper .details span {
  display: flex;
  align-items: center;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
}
.inner-wrapper .details a {
  text-decoration: none;
}
.inner-wrapper .details a:not(:hover) {
  color: #6c757d;
}
.inner-wrapper .header {
  margin-bottom: 1.5rem;
}
.inner-wrapper .header .title {
  color: #212529;
}
.inner-wrapper .subtitle {
  color: #212529;
  padding: 0 0 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.inner-wrapper .subtitle::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  content: "";
  width: 0.5rem;
  border-radius: 50%;
  background-color: #fd7e14;
  width: 4rem;
}

.card.card-outlined {
  position: relative;
  border-style: dashed;
  border-color: rgba(253, 126, 20, 0.4);
}
.card.card-outlined p {
  margin: 0;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 2;
}
.card.inner-page-aside-card {
  border-radius: 0;
  margin-bottom: 2.5rem;
}
.card.inner-page-aside-card .card-header,
.card.inner-page-aside-card .card-footer {
  border: none;
  background: transparent;
}
.card.inner-page-aside-card .card-header {
  padding-top: 1.25rem;
}
.card.inner-page-aside-card .card-header .card-title {
  color: #212529;
  padding: 0 0 1rem;
  position: relative;
}
.card.inner-page-aside-card .card-header .card-title::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  content: "";
  width: 0.5rem;
  border-radius: 50%;
  background-color: #fd7e14;
  width: 4rem;
}
.card.inner-page-aside-card .list-group .list-group-item {
  display: flex;
  gap: 1.5rem;
  border-left: none;
  border-right: none;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  border-color: #e9ecef;
}
.card.inner-page-aside-card .list-group .list-group-item .item-start {
  flex: 1 1 auto;
}
.card.inner-page-aside-card .list-group .list-group-item .item-end {
  font-size: 0.75rem;
}
.card.inner-page-aside-card .list-group .list-group-item .item-end:before {
  content: "(";
}
.card.inner-page-aside-card .list-group .list-group-item .item-end:after {
  content: ")";
}
.card.inner-page-aside-card .list-group .list-group-item:last-child {
  border-bottom: none;
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-action {
  position: relative;
  padding-left: 3rem;
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-action:before {
  position: absolute;
  left: 1.25rem;
  content: "";
  content: "\f0140";
  font-family: "Material Design Icons";
  transition: all 0.2s ease;
  font-size: 1.25rem;
  top: 0.75rem;
  transform: rotate(0);
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-action:hover {
  color: #fd7e14;
  background-color: #fff8f3;
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-action:hover:before {
  transform: rotate(-90deg);
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-comment .header {
  display: flex;
  margin-bottom: 0.5rem;
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-comment .header small {
  color: #6c757d;
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-comment p {
  margin: 0;
  color: #6c757d;
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-comment .avatar {
  width: 5rem;
  height: 5rem;
  flex: 0 0 5rem;
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-comment .avatar img {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-comment .thumb {
  width: 6rem;
  height: 6rem;
  flex: 0 0 6rem;
}
.card.inner-page-aside-card .list-group .list-group-item.list-group-item-comment .thumb img {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
}
.card.inner-page-aside-card .list-group .list-group-item.hover-overlay-container h6 {
  color: #212529;
}
.card.inner-page-aside-card .list-group .list-group-item.hover-overlay-container:hover h6 {
  color: #fd7e14;
}
.card.inner-page-aside-card .card-footer {
  padding-bottom: 1.5rem;
}
.card.inner-page-aside-card.booking {
  background-image: url("../imgs/inner-page/electric-poll.jpg");
  background-size: cover;
  background-position: center center;
  color: #fff;
}
.card.inner-page-aside-card.booking::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(33, 37, 41, 0.75);
  backdrop-filter: blur(4px);
}
.card.inner-page-aside-card.booking .card-header,
.card.inner-page-aside-card.booking .card-body,
.card.inner-page-aside-card.booking .card-footer {
  position: relative;
  z-index: 2;
  padding-left: 2rem;
  padding-right: 2rem;
}
.card.inner-page-aside-card.booking .card-header {
  padding-top: 2rem;
}
.card.inner-page-aside-card.booking .card-header .card-title {
  color: #fff;
}
.card.inner-page-aside-card.booking .card-footer {
  padding-bottom: 2rem;
}
.card.card-our-team {
  border: none;
  text-align: center;
  box-shadow: none;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
  top: 0;
}
.card.card-our-team p {
  margin: 0;
  color: #495057;
  font-size: 0.875rem;
}
.card.card-our-team hr {
  width: 3rem;
  margin-left: auto;
  margin-right: auto;
  border-width: 0.125rem;
  transition: all 0.2s ease;
}
.card.card-our-team .user-img {
  position: relative;
  overflow: hidden;
}
.card.card-our-team .user-img img {
  transition: all 0.2s ease;
}
.card.card-our-team .user-img .social-link {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: all 0.2s ease;
}
.card.card-our-team .user-img:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.2s ease;
  background-color: rgba(33, 37, 41, 0.75);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  padding-bottom: 0;
  color: #fff;
  opacity: 0;
  bottom: -3rem;
  visibility: hidden;
  content: "";
  z-index: 2;
}
.card.card-our-team:hover {
  box-shadow: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175);
  top: -0.25rem;
}
.card.card-our-team:hover hr {
  width: 4rem;
  border-color: #fd7e14;
  opacity: 1;
}
.card.card-our-team:hover .user-img .social-link {
  top: 50%;
  opacity: 1;
}
.card.card-our-team:hover .user-img img {
  transform: scale(1.2);
}
.card.card-our-team:hover .user-img:before {
  opacity: 1;
  bottom: 0;
  visibility: visible;
  padding-bottom: 1.5rem;
}

.bullet-points-ci {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bullet-points-ci .item {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.25rem 0;
  color: #212529;
  font-size: 0.875rem;
}
.bullet-points-ci .item .icon {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  flex: 0 0 1.5rem;
  border-radius: 0.75rem;
  color: #fff;
  background: #fd7e14;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -0.125rem;
}

.section-with-closing-tabs .nav-tabs {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .section-with-closing-tabs .nav-tabs {
    margin-bottom: 5rem;
  }
}

.cbp {
  margin-top: 3rem;
}
.cbp .cbp-item-wrapper .card {
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  box-shadow: none;
}
.cbp .cbp-item-wrapper .card .card-body .logo {
  margin: 0 0 1rem;
}
.cbp .cbp-item-wrapper .card .card-body .logo img {
  height: 2rem;
  margin-right: auto;
  display: block;
  width: auto;
}
.cbp .cbp-item-wrapper .card .card-body .title {
  margin: 0;
  transition: all 0.2s ease;
}
.cbp .cbp-item-wrapper .card .card-body .company {
  color: #495057;
  margin-bottom: 0.25rem;
}
.cbp .cbp-item-wrapper .card .card-body .location {
  color: #adb5bd;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.cbp .cbp-item-wrapper .card .card-body .activey-recruiting {
  font-size: 0.875rem;
  color: #495057;
  margin-bottom: 0.75rem;
}
.cbp .cbp-item-wrapper .card .card-body .posted-on {
  font-weight: 500;
}
.cbp .cbp-item-wrapper .card:hover {
  background-color: #fff3e8;
  border-color: #fd7e14;
}
.cbp .cbp-item-wrapper .card:hover .card-body .title {
  color: #fd7e14;
}

.comment-items .comment-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.comment-items .comment-item .user-info-comment .top {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.comment-items .comment-item .user-info-comment .top .h5 {
  color: #212529;
  flex: 1 1 auto;
}
.comment-items .comment-item .user-info-comment .top .date-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.comment-items .comment-item .user-info-comment .top .date-rating .date {
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .comment-items .comment-item {
    gap: 2.5rem;
    flex-wrap: nowrap;
  }
  .comment-items .comment-item .user-img {
    width: 8rem;
    height: 8rem;
    flex: 0 0 8rem;
  }
}

/*
/*
================================================
21. Breadcrumb Style
================================================
*/
.breadcrumb .breadcrumb-item {
  color: #fff;
  font-weight: 300;
}
.breadcrumb .breadcrumb-item::before {
  color: #fff;
}
.breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: #FF9900;
}
.breadcrumb .breadcrumb-item a:not(:hover) {
  color: #fff;
}

/*

/*
================================================
22. Accordion Style
================================================
*/
.accordion .accordion-item {
  margin-bottom: 1.5rem;
}
.accordion .accordion-item:not(:first-of-type) {
  border-top: 1px solid #e9ecef;
}
.accordion .accordion-item .accordion-header .accordion-button {
  padding-left: 4rem;
  box-shadow: none;
  font-size: 1.125rem;
  font-weight: 500;
}
.accordion .accordion-item .accordion-header .accordion-button:after {
  position: absolute;
  left: 1rem;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
@media (min-width: 992px) {
  .accordion .accordion-item .accordion-body {
    padding: 1.5rem;
  }
}

/*
/*
================================================
23. Error Page
================================================
*/
.section.section-not-found {
  background-image: url("../imgs/error-page-bg.jpg");
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.section.section-not-found::before {
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.section.section-not-found .container {
  position: relative;
  max-width: 768px;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.section.section-not-found h2 {
  font-size: 3rem;
}
.section.section-not-found h1 {
  font-size: 8rem;
  color: #FF9900;
  margin-bottom: 1rem;
  text-shadow: 0.5rem 0.5rem 0 #212529;
}
.section.section-not-found h3 {
  font-weight: 300;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.section.section-not-found p {
  font-weight: 300;
}
.section.section-not-found .buttons {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  .section.section-not-found h2 {
    font-size: 4rem;
  }
  .section.section-not-found h1 {
    font-size: 14rem;
  }
  .section.section-not-found h3 {
    font-size: 4rem;
  }
  .section.section-not-found p {
    font-weight: 300;
    font-size: 1.25rem;
  }
}

/*
/*
================================================
24. Coming Soon Page
================================================
*/
.section.section-coming-soon {
  background-image: url("../imgs/coming-soon.jpg");
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.section.section-coming-soon::before {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.section.section-coming-soon .container {
  position: relative;
  max-width: 768px;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.section.section-coming-soon .notifed-input-group {
  width: 100%;
  margin: 1rem auto 0;
  max-width: 500px;
  text-align: left;
}
.section.section-coming-soon .notifed-input-group label {
  font-weight: 300;
  font-size: 0.875rem;
  opacity: 0.7;
}
.section.section-coming-soon .notifed-input-group .input-group {
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 0.375rem;
}
.section.section-coming-soon .notifed-input-group .input-group .form-control {
  border: none;
  box-shadow: none;
}
.section.section-coming-soon .notifed-input-group .input-group .btn {
  border-radius: 0.375rem !important;
}
.section.section-coming-soon .h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0.5rem 0.5rem 0 #212529;
}
.section.section-coming-soon p {
  font-weight: 300;
  font-size: 0.875rem;
  margin-top: 2rem;
}
.section.section-coming-soon .buttons {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  .section.section-coming-soon .h2 {
    font-size: 4rem;
  }
}

.countdown-container .countdown-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.countdown-container .countdown-row .countdown-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.countdown-container .countdown-row .countdown-section .countdown-amount {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
  color: #FF9900;
}
@media (min-width: 992px) {
  .countdown-container .countdown-row .countdown-section .countdown-amount {
    font-size: 8rem;
  }
}
.countdown-container .countdown-row .countdown-section .countdown-period {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 0.875rem;
}
.countdown-container .countdown-row .countdown-section:not(:first-child)::before {
  content: ":";
  position: absolute;
  left: -1.5rem;
  top: 1rem;
  transform: translateY(-50%);
  font-size: 2rem;
}
@media (min-width: 992px) {
  .countdown-container .countdown-row .countdown-section:not(:first-child)::before {
    top: 6rem;
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .countdown-container {
    margin: 2rem 0 0rem 0;
  }
}

/*

25. Pricing Plan Style
================================================
*/
.card.pricing-card {
  border-radius: 0;
  border: 1px solid #e9ecef;
  border-radius: 0;
  transition: all 0.2s ease;
  transform: scale(1);
}
.card.pricing-card .card-header,
.card.pricing-card .card-body {
  padding: 2rem;
  background: transparent;
  border-color: rgba(173, 181, 189, 0.2);
}
.card.pricing-card .card-header .subtitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card.pricing-card .card-header .subtitle .start {
  font-size: 1.5rem;
}
.card.pricing-card .card-header .subtitle .badge {
  font-weight: 400;
}
.card.pricing-card .card-header .price-details {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card.pricing-card .card-header .price-details .price {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.3;
}
.card.pricing-card .card-header .price-details .price-terms {
  display: flex;
  flex-direction: column;
}
.card.pricing-card .card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.card.pricing-card .card-body ul li {
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card.pricing-card .card-body ul li .icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex: 0 0 1.25rem;
  background: rgba(255, 153, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .card.pricing-card .card-header,
  .card.pricing-card .card-body {
    padding: 3rem;
  }
  .card.pricing-card:hover {
    transform: scale(1.05);
  }
}

/*

26. Contact Us Style
================================================
*/
.section-location-map iframe {
  bottom: 0;
  width: 100%;
  height: 60vh;
  min-height: 400;
  display: block;
  margin: 0;
}

.contact-details .item {
  margin-bottom: 1.5rem;
}
.contact-details .item .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-details .item .title .icon {
  color: #fd7e14;
  width: 1.5rem;
  flex: 0 0 1.5rem;
  text-align: center;
}
.contact-details .item .item-body {
  padding: 1rem;
  padding-left: 2.5rem;
}
.contact-details .item .item-body p {
  margin: 0;
}
.contact-details .item .item-body p a {
  text-decoration: none;
}
.contact-details .item .item-body p a:not(:hover) {
  color: #495057;
}

/*

================================================
27. Footer Style
================================================
*/
.page-footer {
  font-size: 0.875rem;
  color: #fff;
}
.page-footer a {
  display: block;
  letter-spacing: 1px;
  color: #ffc266;
  text-decoration: none;
}
.page-footer a:not(:hover) {
  color: #fff;
  text-decoration: none;
}
.page-footer .subscribe-newsletter {
  position: relative;
  padding: 3rem 0;
  background-image: url("../imgs/subscribe-bg.png");
  background-repeat: repeat;
  background-size: 15%;
}
.page-footer .subscribe-newsletter .container {
  position: relative;
  z-index: 1;
}
.page-footer .subscribe-newsletter .content {
  color: #fff;
}
.page-footer .subscribe-newsletter:before, .page-footer .subscribe-newsletter:after {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 50%;
}
.page-footer .subscribe-newsletter p {
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.page-footer .subscribe-newsletter:before {
  background: rgba(38, 43, 47, 0.8);
}
.page-footer .subscribe-newsletter .input-group {
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 0.375rem;
}
.page-footer .subscribe-newsletter .input-group .form-control {
  border: none;
  box-shadow: none;
}
.page-footer .subscribe-newsletter .input-group .btn {
  border-radius: 0.375rem !important;
}
@media (min-width: 992px) {
  .page-footer .subscribe-newsletter {
    padding: 5rem 0;
  }
  .page-footer .subscribe-newsletter:before, .page-footer .subscribe-newsletter:after {
    height: 100%;
    width: 50%;
  }
  .page-footer .subscribe-newsletter:before {
    background: rgba(38, 43, 47, 0.8);
    left: 0;
  }
  .page-footer .subscribe-newsletter:after {
    right: 0;
    background-color: rgba(255, 153, 0, 0.8);
  }
}
.page-footer .footer-container {
  padding: 3rem 0;
}
.page-footer .footer-container .subtitle {
  color: #fff;
  line-height: 2;
  position: relative;
  display: inline-flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.page-footer .footer-container .subtitle:before {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  display: block;
}
.page-footer .footer-container .subtitle:after {
  content: "";
  clear: both;
  display: block;
}
.page-footer .footer-container .subtitle span {
  color: #ffc266;
  display: inline-flex;
  position: relative;
}
.page-footer .footer-container .subtitle span:before {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ffc266;
  position: absolute;
}
.page-footer .footer-container .logo {
  margin-bottom: 1.5rem;
  display: block;
  padding: 0.5rem 0;
}
.page-footer .footer-container .logo img {
  display: block;
  height: 1.5rem;
}
.page-footer .footer-container p {
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .page-footer .footer-container {
    padding: 5rem 0;
  }
}
.page-footer .footer-container .links a {
  padding: 0.75rem 1rem;
}
.page-footer .links,
.page-footer .hours,
.page-footer .contact-details {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-footer .hours li {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-footer .hours li span {
  color: #ffc266;
  text-transform: uppercase;
  min-width: 2rem;
}
.page-footer .contact-details {
  margin-bottom: 1.5rem;
}
.page-footer .contact-details li {
  padding: 0.5rem 1rem;
  display: flex;
  gap: 1rem;
}
.page-footer .social-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c3237;
}
.page-footer .social-link a:hover {
  color: #fff;
  background-color: #FF9900;
}
.page-footer .copyright {
  background: #1f2226;
}
.page-footer .copyright .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  font-weight: 300;
  flex-direction: column;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.page-footer .copyright .container p {
  margin: 0;
  order: 2;
  opacity: 0.5;
}
.page-footer .copyright .container .links {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 1;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .page-footer .copyright .container {
    flex-direction: row;
  }
  .page-footer .copyright .container p {
    order: 1;
  }
  .page-footer .copyright .container .links {
    order: 2;
    margin: 0;
  }
}/*# sourceMappingURL=styles.css.map */