@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  font-family: "Roboto", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'General Sans', sans-serif;
}


.btn-white {
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
}

.btn-white:hover {
  transform: scale(1.1);
  background-color: #EFA505;
}

.btn-yellow {
  background-color: #EFA505;
  color: #000;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
}

.btn-yellow:hover {
  transform: scale(1.1);
  background-color: #fff;
}

.ticker-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px;
  color: #fff;

}

.ticker-wrapper {
  display: flex;
  animation: ticker 10s linear infinite;
}

.ticker {
  display: flex;
  width: max-content;
}

.ticker-text {
  font-weight: bold;
  color: #F2B922;
  padding-right: 50px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


@keyframes vibrate-1 {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

/***************Navbar *************/


.main-header .container {
  max-width: 1440px;

}

@media screen and (min-width: 992px) {
  .main-header .container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

a.navbar-brand img {
  max-width: 140px;

}

.abouts a.navbar-brand img {
  max-width: 140px;
  padding-left: 20px;
}

li.nav-item.active {
  border-top: 1px solid #EFA505 !important;
}

li.nav-item.active a {
  color: #EFA505 !important;
}

.navbar-nav .dropdown-menu {
  border: none !important;
  background: #000 !important;
  border-top: 2px solid #526a30 !important;
}

header#main-header ul.navbar-nav li a {
  color: #000;
  font-size: 16px !important;
  font-weight: 500;
  text-transform: uppercase;
}
.navbar ul.sub-menu li a {
    font-size: 14px !important;
    font-weight: 300 !important;
}


nav.navbar .dropdown-menu .dropdown-item {
  font-size: 1rem !important;
  color: #fff !important;
}

.main-header nav.navbar ul.navbar-nav li {
  padding-right: 50px;
  border-top: 1px solid #000;
  text-align: left;
  margin: 0 6px;

}

/*.main-header nav.navbar ul.navbar-nav li:last-child {
  border: 1px solid #000;
  border-radius: 50px;
  padding-left: 0.5rem;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}

.main-header nav.navbar ul.navbar-nav li:last-child:hover {
  background-color: #EFA505;
  transform: scale(1.1);
}*/

.main-header .navbar-expand-xl .navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  padding-left: 0rem !important;
}

/********Banner slide ***********/

.main-header {
  position: absolute;
  z-index: 99;
  top: 10px;
  width: 100%;
}

.banner-slide {
  background-image: url(../images/banner-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.banner-slide .container-fluid {
  max-width: 1650px;
}

.banner-slide .banner-content {
  text-align: left;
  padding: 200px 0 40px;
}
.logo-banner-heading img {
    width: 300px;
    height: 170px;
    object-fit: contain;
}

.banner-slide .banner-content h2 {
  font-size: 60px;
  color: #000;
  font-weight: 700;
}

.banner-slide .banner-content p {
  font-size: 16px;
  color: #000;
}



.banner-slide .generac img {
  max-width: 450px;
  position: absolute;
  bottom: 0;
  left: 150px;

}


.banner-slide .banner-list {
  position: relative;
}

.banner-slide .banner-man img {
  padding-top: 120px;
}

.banner-slide .banner-list ul {
  list-style: none;
  margin-bottom: 0px;
}

.banner-slide .banner-list ul li span {
  background: #fff;
  padding: 10px;
  border-radius: 50px;

}

.banner-slide .banner-list ul li span img {
  width: 20px;
  height: 20px;
  line-height: 20px;

}

.banner-slide .banner-list ul li a {
  text-decoration: none;
  color: #000;
}

.banner-slide .banner-list ul li:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #000;
}

.banner-slide .banner-list ul li {
  background-color: #ffffff4d;
  padding: 15px 10px;
  border-radius: 30px;
  box-shadow: 0 0 10px #ddd;
  position: absolute;
  transition: all 0.5s ease-in-out;
  animation: floatAnimation 2s infinite ease-in-out;
}

.banner-slide .banner-list ul li:first-child {
  top: 40%;
}

.banner-slide .banner-list ul li:nth-child(2) {
  top: 50%;
  right: 70px;
}

.banner-slide .banner-list ul li:nth-child(3) {
  bottom: 2%;
}


/*******About Us*******/

.year-experience {
  background-color: #000;
}

.year-experience h2 {
  text-align: center;
  color: #fff;
  font-size: 99px;
  padding-bottom: 30px;
  font-weight: bold;
}

.year-experience h2 span img {
  width: 20px;
  animation: vibrate-1 0.9s linear infinite both;
}

.year-experience h4 {
  color: #fff;
  font-size: 20px;
}

.year-experience h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.year-experience .about-content h2 {
  text-align: left;
  font-size: 32px;
  padding: 0;
}

.year-experience .about-content p {
  font-size: 16px;
  color: #fff;
  text-align: justify;
}


/*******OUR SERVICES********/

.our-services {
  background-color: #1C1B1B;
}

.our-services h4 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.our-services h4 img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.our-services h2 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.our-services p {
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.our-services .card {
  position: relative;
  width: 100%;
  max-width: 400px;
  transition: all 0.5s ease-in-out;
}

.our-services .card:hover {
  transform: translateY(-10px);
}

.our-services .card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.our-services .card .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: .3s ease;
}

.our-services .card:hover .overlay {
  opacity: 1;
  background-color: #efa50569;
}

.our-services .card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background-color: transparent;
  border-radius: 32px !important; 
}

.our-services .card img {
  display: block;
  width: 100%;
  min-height: 440px;
}

.our-services .card .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: .3s ease;
}

.our-services .card:hover .overlay {
  opacity: 1;
  background-image: linear-gradient(180deg, #ffffffab, #efa50580);
  border-radius: 20px;

}

.our-services .card .overlay-title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.our-services .card .overlay-title h3 {
  font-size: 28px;
  font-weight: bold;

}

.our-services .card:hover h3 {
  color: #000 !important;
}

.our-services .card:hover .btn-yellow {
  color: #fff !important;
  background-color: #000 !important;
}




.our-services .owl-carousel .owl-dots.disabled {
  display: block;
  text-align: center;
  margin: 20px auto;
}

.our-services .owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  color: #727070;
  margin: 0 20px;
  text-align: center;
  margin: 0 auto;

}

.our-services .owl-carousel .owl-dot.active {
  color: #fff !important;
}



/******Counts*******/
.counts {
  background-image: linear-gradient(to bottom, #1C1B1B 50%, #000 50%);
}

.counter-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: auto;
  background-image: linear-gradient(to bottom, #fff, #EFA505);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.counter {
  text-align: center;
  width: 20%;
}

.counter i {
  font-size: 2.5rem;
  color: #f7b600;
  margin-bottom: 10px;
}

.counter h2 {
  font-size: 7rem;
  margin: 0;
  color: #000;
  font-weight: bold;

}

.counter p {
  font-size: 1rem;
  color: #000;
}

.divider {
  width: 2px;
  height: 70px;
  background: #EFA505;
}

/******Materials********/

.materials {
  background-color: #000;
}

.materials h2 {
  text-align: center;
  color: #fff;
  font-size: 46px;
  padding-bottom: 30px;
  font-weight: bold;
}

.materials h2 span img {
  width: 20px;
  animation: vibrate-1 0.9s linear infinite both;
}

.materials .card {
  background-color: transparent;
  animation: floatAnimation 2s infinite ease-in-out;
}

.materials .card .card-img {
  position: relative;
}

.materials .card .card-img .overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity: 1;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

.materials .card .card-img .overlay a {
  color: #fff;
  text-decoration: none;
}

.materials .card .card-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 2s ease, opacity 2s ease, visibility 2s ease;
}

.materials .card:hover .card-body {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}

.materials .card .card-body h3 {
  font-size: 28px;
  color: #fff;
}

.materials .card .card-body span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.materials .card .card-body p {
  font-size: 16px;
  color: #fff;
}

/********FAQs*********/
.faq {
  background-color: #000;
}

.faq .container {
  background-color: #1C1B1B;
  border-radius: 30px;
  padding: 30px;
}

.faq .faq-content h4 {
  color: #fff;
  font-size: 20px;
}

.faq .faq-content h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.faq .faq-content h2 {
  font-size: 32px;
  color: #fff;
}

.faq .accordion-button::after {
  content: "\2212";
  transition: all 0.5s;
  background-image: none;
}

.faq .accordion-button:not(.collapsed)::after {
  content: "\2b";
  background-image: none;
}

.faq .accordion-button::after {
  transition: all 0.5s;
  position: absolute;
  left: 5px;
}

.faq .accordion-item {
  background-color: transparent !important;
  border-radius: 0px !important;
}

.faq .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 50px !important;
  border-top-right-radius: 50px !important;
}

.faq .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
}

.faq button.accordion-button {
  background-color: #000;
  margin: 10px 0;
  border-color: none;
  color: #fff;
  border-radius: 50px;
  padding: 1rem 2rem;
}

.faq button.accordion-button:focus {
  border-color: transparent !important;
  box-shadow: none !important
}

.faq .accordion-body {
  color: #fff;
}

/*******Our Work********/
.our-work {
  background-color: #000;
}

.our-work h4 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.our-work h4 img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.our-work h2 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.our-work p {
  font-size: 16px;
  color: #fff;
  text-align: center;
}

#work-slider .item img {
  height: 512px;
  object-fit: cover;
  width: 100%;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}

#work-slider .item img:hover {
  transform: translateY(-10px);
}

/*******OUR TESTIMONIALS*********/

.testimonials {
  background-color: #1C1B1B;
}

.testimonials h4 {
  font-size: 20px;
  text-align: left;
  font-weight: 500;
  color: #fff;
}

.testimonials h4 img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.testimonials h2 {
  font-size: 32px;
  color: #fff;
  text-align: left;
  font-weight: 500;
}

.testimonial .testimonial-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
  background-color: #F6F6F6;
  padding: 50px;
  margin: 0 auto;
  border-radius: 20px;
}

.testimonial ul.testimonial-clients {
  display: flex;
  justify-content: center;
  list-style: none;
  align-items: center;
  text-align: center;
}

.testimonial ul.testimonial-clients li p {
  padding: 0;
  margin: 0;
}

.testimonial ul.testimonial-clients li {
  margin: 0 10px;
}

.testimonials .testimonials-content img {
  max-width: 50px;
  padding: 10px 0;
}

.testimonials .testimonials-content p {
  color: #fff;
  padding: 10px 0;
}

.testimonials .testimonials-content ul.clients-name {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
}

.testimonials .testimonials-content ul.clients-name li {
  margin: 0 10px;
}

.testimonials .testimonials-content ul.clients-name li:first-child {
  color: #fff;
  font-size: 20px;
  margin: 0px;
}

.testimonials .testimonials-content ul.clients-name li .star-rating .fas {
  color: #41403F;
}

.testimonials .owl-nav {
  position: absolute;
  bottom: 40px;
  right: 20px;
}

.testimonials .owl-carousel .owl-nav button.owl-next,
.testimonials .owl-carousel .owl-nav button.owl-prev {
  background-color: #463717;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  margin: 0 10px;
}

.testimonials .owl-carousel .owl-nav button.owl-next i,
.testimonials .owl-carousel .owl-nav button.owl-prev i {
  font-size: 14px;
  color: #fff;
}

/*********Get In TOUCH*************/

.get-touch {
  background-color: #1E1E1E;
}

.get-touch h4 {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  color: #fff;
}

.get-touch h4 img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.get-touch h2 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.get-touch p {
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.get-touch .form-group {
  position: relative;
  margin-bottom: 30px;
}

.get-touch .form-group .fas {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #797979;
}

.get-touch .btn-group {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
}

.get-touch .btn-send {
  border-bottom: 1px solid #fff;
  box-shadow: none;
  text-align: left;
  color: #fff;
}

.get-touch .btn-group .fas {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #797979;
}

.get-touch .form-control {
  padding: 0.375rem 1.75rem !important;
}

.get-touch .form-control {
  color: #212529;
  background-color: transparent !important;
  border-color: #ddd;
  outline: 0;
  box-shadow: none !important;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0px !important;
}

/*******Contact Information*******/

.contact-info {
  background-color: #000;
}

.contact-info h4 {
  font-size: 20px;
  text-align: left;
  font-weight: 500;
  color: #000;
}

.contact-info h4 img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.contact-info h2 {
  font-size: 30px;
  color: #000;
  text-align: left;
  font-weight: 500;
}

.contact-info .container {
  background-image: linear-gradient(to bottom, #fff, #EFA505);
  padding: 40px 50px 20px;
  border-radius: 50px;
}

.contact-info .contact-info-details ul {
  list-style: none;
  display: grid;
  grid-template-columns: auto auto;
  padding: 0;
}

.contact-info .contact-info-details ul li {
  padding-bottom: 25px;
  color: #000;
}

.contact-info .contact-info-details ul li .fas {
  background-color: #EFA505;
  padding: 8px 10px;
  border-radius: 50px;
  color: #000;
}

.contact-info .contact-info-details ul li a {
  text-decoration: none;
  color: #000;
}

.contact-info .contact-info-details ul li p {
  text-indent: 40px;
}

/******FOOTER *Newsletter********/

footer {
  background-color: #000;
}

.form-newsletter .form-outline {
  position: relative;
}

.form-newsletter .form-outline .form-label {
  color: #fff;
}

.form-newsletter .form-outline .fas {
  position: absolute;
  top: 42px;
  left: -10px;
  color: #797979;
}

.form-newsletter .form-control {
  background-color: transparent;
  border: none;
}

.form-newsletter .row {
  border-bottom: 1px solid #ddd;
}


footer ul.footer-nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

footer ul.footer-nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.copyright p {
  color: #fff;
  font-size: 16px;
}

.copyright .copyright-nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.copyright .copyright-nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;

}

/*****About us****/
.main-body {
  background-color: #000;
}

.main-body .main-header {
  position: initial;
  margin-top: 20px;
}

.main-body .main-header .container {
  background-image: linear-gradient(180deg, #fff, #f1c76b);
  border-radius: 10px;
  padding: 20px;

}

/***Inner page breadcrumb*****/
.inner-breadcrumb h2 {
  text-align: center;
  padding: 10px 0;
  font-size: 58px;
  font-weight: bold;
  color: #fff;
}

.inner-breadcrumb h2 img {
  width: 20px;
  animation: vibrate-1 0.9s linear infinite both;
}

.inner-breadcrumb ol.breadcrumb {
  display: flex;
  justify-content: center;
}

.inner-breadcrumb ol.breadcrumb li,
.inner-breadcrumb ol.breadcrumb li a,
.inner-breadcrumb .breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
  color: #878787;
  text-decoration: none
}

.inner-breadcrumb {
  margin-top: 40px;
}

.page-template-template-about .contact-info {
  padding-top: 0 !important;
}

.about-us .about-us-content h4 {
  color: #fff;
  font-size: 20px;
}

.about-us .about-us-content h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.about-us .about-us-content h2 {
  text-align: left;
  font-size: 36px;
  padding-bottom: 10px;
  color: #fff;
}

.about-us .about-us-content {
  padding: 0 65px;
}

.about-us .about-us-content p {
  font-size: 16px;
  color: #fff;
  text-align: justify;
}

/* Why choose */

.Why-choose {
  background-color: #1C1B1B;
}

.Why-choose h4 {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.Why-choose h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.Why-choose h2 {
  text-align: center;
  font-size: 36px;
  padding-bottom: 10px;
  color: #fff;
}

.Why-choose p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}

.Why-choose .card {
  background-color: #0E0F0F;
  border-radius: 10px;
  text-align: center;
  padding: 30px;
  min-height: 285px;
  transition: all 0.5s ease-in-out;
  animation: floatAnimation 2s infinite ease-in-out;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.Why-choose .card:hover {
  transform: translateY(-10px);
}

.Why-choose .card img {
  max-width: 100px;
  text-align: center;
  margin: 0 auto;
}

.Why-choose .card p.card-text {
  font-size: 20px;
  font-weight: 300;
}

/******Our Conmmitment******/

.our-conmmitment {
  overflow: hidden;
}

.our-conmmitment .conmmitment-content h4 {
  color: #fff;
  font-size: 20px;
}

.our-conmmitment .conmmitment-content h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.our-conmmitment .conmmitment-content h2 {
  text-align: left;
  font-size: 36px;
  padding-bottom: 10px;
  color: #fff;
}

.our-conmmitment .conmmitment-content p {
  font-size: 16px;
  color: #fff;
  text-align: justify;
}

.our-conmmitment .conmmitment-left {
  z-index: 99;
}

.our-conmmitment .conmmitment-content {
  background-color: #1C1B1B;
  padding: 50px 50px 50px 80px;
  margin-left: -100px;
  border-radius: 20px;
  position: relative;
  z-index: 00;
  margin-top: 50px;
}

.our-conmmitment .conmmitment-content-box {
  position: relative;
}

.our-conmmitment .commitment-right img {
  position: absolute;
  right: 0;
  top: 75%;
}


/******Material Page ********/

.material-page .material-page-content h4 {
  color: #fff;
  font-size: 20px;
}

.material-page .material-page-content h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.material-page .material-page-content h2 {
  text-align: left;
  font-size: 36px;
  padding-bottom: 10px;
  color: #fff;
}

.material-page .material-page-content {
  padding: 0 65px;
}

.material-page .material-page-content p {
  font-size: 16px;
  color: #fff;
  text-align: justify;
}

/***********FAQs ************/

.faqs {
  background-color: #1C1B1B;
}

.faqs h4 {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.faqs h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.faqs h2 {
  text-align: left;
  font-size: 36px;

  color: #fff;
  text-align: center;
  font-weight: 900;
}

#faqAccordion .accordion-button {
  background-color: #000 !important;
  color: #fff !important;
  font-weight: bold;
  box-shadow: none !important;
  background-image: none !important;
  --bs-accordion-btn-icon: none !important;
  --bs-accordion-btn-active-icon: none !important;
}

#faqAccordion .accordion-item {
  background: linear-gradient(to bottom, #efa505, #fff) !important;
  border: none !important;
  margin-bottom: 30px;
}

#faqAccordion .accordion-button {
  font-size: 24px;
}

#faqAccordion .accordion-item,
#faqAccordion .accordion-item .accordion-button {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}



#faqAccordion .accordion-button:not(.collapsed)::after {
  background-image: none !important;
}

#faqAccordion .accordion-button:not(.collapsed) {
  background: linear-gradient(to top, #efa5055e, #fff) !important;
  color: #000 !important;
}

#faqAccordion .accordion-body {
  background: linear-gradient(to bottom, #efa5055e, #fff);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#faqAccordion .accordion-button::after {
  content: '\002B';
  font-size: 1.2rem;
  color: #fff;
}

#faqAccordion .accordion-button:not(.collapsed)::after {
  content: '\2212';
  color: #000;
}

/*******Our Work********/

.our-work {
  background-color: #1C1B1B;
}

.our-work h2 {
  text-align: center;
  font-size: 36px;
  padding-bottom: 30px;
}

.our-blogs .container {
  background: linear-gradient(to bottom, #EFA505, #fff);
  padding: 50px;
  border-radius: 30px;
}

.our-blogs .our-blogs-content h4 {
  color: #000;
}

.our-blogs .our-blogs-content h2 {
  color: #000;
  font-size: 36px;
  font-weight: 500;
}

.our-blogs .our-blogs-content p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
}

.blogs-box .card {
  background-color: #0E0F0F;
  padding: 35px;
  border-radius: 30px;
  min-height: 680px;
}
.blogs-box .card img {
    max-height: 355px;
    object-fit: cover;
}
.blogs-box .card h4 {
  color: #727070;
  font-size: 18px;
  font-weight: 700;
}

.blogs-box .card p.card-text {
  font-size: 24px;
  color: #fff;
}

.blogs-box .btn-viewmore {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  width: 100%;
  max-width: fit-content;
  margin: 60px auto 0;
}
.single-post .post-content h2 {
    color: #fff;
}

/*********Contact Form**********/
.contact-form h4 {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.contact-form h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.contact-form h2 {
  text-align: center;
  font-size: 36px;
  padding-bottom: 10px;
  color: #fff;
}

.contact-form .container {
  background-color: #0E0F0F;
  padding: 60px;
  border-radius: 20px;
}

.contact-form .textarea-container {
  position: relative;
}

.contact-form .textarea-container textarea {
  padding-right: 40px;
}

.contact-form .send-icon {
  position: absolute;
  bottom: 19px;
  right: 10px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s ease-in-out;
  font-size: 28px;
}

.contact-form .send-icon:hover {
  color: #0056b3;
}

.contact-form .form-control {
  background: transparent !important;
  border: none;
  border-bottom: 2px solid #007bff;
  border-radius: 0;
  color: white;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-bottom: 2px solid #0056b3;
}

.contact-form .input-group-text {
  background-color: transparent;
}

.contact-form .input-group i {
  color: #fff;
}

/************New Home construction Services page**************/

.construction-wiring {
  background-color: #1C1B1B;
}

.construction-wiring .construction-wiring-content h2 {
  font-size: 32px;
  color: #fff;
}

.construction-wiring .construction-wiring-content p {
  font-size: 16px;
  color: #fff;
}

/********Why Choose Construction*******/


.Why-choose-Construction {
  background-color: #000;
}

.why-choose-construction-box {
  background-color: #0E0F0F;
  border-radius: 20px;
  padding: 30px 10px;
}

.Why-choose-Construction h4 {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.Why-choose-Construction h4 span img {
  width: 10px;
}

.Why-choose-Construction h2 {
  text-align: center;
  font-size: 36px;
  padding-bottom: 10px;
  color: #fff;
}

.Why-choose-Construction p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}


/*********OUR SERVICES PAGE*********/

.services-page .services-page-content h4 {
  color: #fff;
  font-size: 20px;
}

.services-page .services-page-content h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

.services-page .services-page-content h2 {
  text-align: left;
  font-size: 34px;
  padding-bottom: 10px;
  color: #fff;
}

.services-page .services-page-content {
  padding: 0 65px;
}

.services-page .services-page-content p {
  font-size: 16px;
  color: #fff;
  text-align: justify;
}

/*******Our Categories ********/
.our-categories {
  background-color: #1C1B1B;
}

.our-categories h4 {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.our-categories h4 span img {
  width: 10px;
  animation: vibrate-1 0.9s linear infinite both;
}

/* start New tab and carousel */

.categories-content {
  border: 1px solid #ddd;
  min-height: 544px;
  border-radius: 20px;
  padding: 20px;
  transition: all 0.5s ease-in-out;
}

.categories-content:hover {
  background-color: #1E1E1E;
  transform: translateY(-10px);
  box-shadow: inset 0px 0px 10px 2px rgba(196, 194, 194, 0.5);
}

.categories-slider .item img {
  min-height: 544px;
  object-fit: cover;
  border-radius: 20px;
  max-height: 423px;
}

.categories-content h2 {
  text-align: left
}

.categories-content p {
  font-size: 16px;
  color: #fff;
  text-align: justify;
  line-height: 2
}


.categories-slider .owl-dots {
  text-align: center;
}

.categories-slider .owl-dots button.owl-dot.active span,
.categories-slider .owl-dots button.owl-dot:hover span {
  background-color: #FEAE00;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  position: absolute;
  top: 1px;
  left: 1px;
}

.categories-slider .owl-dots button.owl-dot {
  border: 1px solid gray;
  background: white;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  position: relative;
  margin: 0 5px;
}


/* End New tab and carousel */

.our-categories ul.nav.nav-tabs {
  justify-content: space-between;
}

.our-categories h2 {
  text-align: center;
  font-size: 34px;
  padding-bottom: 10px;
  color: #fff;
}

.our-categories .nav-tabs {
  border-bottom: none;
}

.our-categories .overlay a {
  margin-top: 20px;
}

.our-categories .nav-tabs .nav-link {
  background: transparent !important;
  border: none;
  color: #ddd;
  padding: 10px 12px;
  position: relative;
  color: #aaa;
  font-weight: normal;
}

.our-categories .nav-tabs .nav-link.active {
  color: #fff;
  font-weight: bold;
}

.our-categories .nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: yellow;
  animation: dude 0.95s forwards;
}

@keyframes dude {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.our-categories .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.our-categories .image-box img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
  height: 450px;
}

.our-categories .image-box:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
  height: 450px;
  background-size: cover;
}

.our-categories .image-box:hover h2 {
  color: #000;
}

.our-categories .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
}

.our-categories .image-box:hover .overlay,
.our-categories .image-box .overlay-desc {
  opacity: 0;
}

.our-categories .overlay-desc {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, #EFA505, #fff);
  color: #000;
  padding: 20px;
  text-align: justify;
  top: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, padding 0.3s ease-in-out;
}

.our-categories .image-box:hover .overlay-desc {
  opacity: 1;
  padding: 40px;
}

.our-services-page h4,
.our-services-page h2,
.our-services-page p {
  text-align: left;
}

.our-services-page .card-text {
  text-align: center;
}

section.Why-choose.our-services-page {
  background-color: #000;
}

/********** Responive css ************/

/* Contact us */



.forminator-custom-form input,
.emaillist input {
  color: #fff;
  background-color: transparent !important;
  border-color: #ddd;
  outline: 0;
  box-shadow: none !important;
  border: none !important;
  border-bottom: 1px solid #ddd !important;
  border-radius: 0px !important;
}

.forminator-custom-form button.forminator-button.forminator-button-submit,
.emaillist .gjs-cell #ivrac {
  background-color: #EFA505 !important;
  color: #000;
  border-radius: 50px !important;
  font-size: 20px !important;
  padding: 10px 50px !important;
  border: none !important;
  transition: all 0.5s ease-in-out;

}

.forminator-custom-form button.forminator-button.forminator-button-submit:hover,
.emaillist .gjs-cell #ivrac:hover {
  background-color: #fff !important;
  transform: scale(1.1);
}

.emaillist #ib2a,
.emaillist #esfpx_email_bce83274f66ad {
  width: 100%;
}

.banner-content h1.heading-h1 {
  font-size: 1.4rem;
  font-family: Good Times Regular;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #efa505;
}

.owl-dots,
.owl-dot {
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .main-header nav.navbar ul.navbar-nav li {
    padding-right: 22px;
  }

  .our-services .card .overlay-title {
    left: 35%;
    transform: translate(-28%, -40%);
    -ms-transform: translate(-28%, -40%);

  }

  .Why-choose .card {
    padding: 25px 15px;
  }

  .our-conmmitment .commitment-right img {
    position: absolute;
    right: 40px;
    top: 70%;
    max-width: 350px;
  }

  .blogs-box .card {
    min-height: 652px;
  }

  .copyright p,
  .copyright .copyright-nav li a {
    color: #fff;
    font-size: 15px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 1081px) {
  .main-header nav.navbar ul.navbar-nav li {
    padding-right: 0px;
    margin: 0 8px;
  }
}

@media screen and (max-width: 1080px) and (min-width: 992px) {
  .main-header nav.navbar ul.navbar-nav li {
    padding-right: 0px;
    margin: 0 2px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .banner-slide .generac img {
    max-width: 350px;
    position: absolute;
    bottom: 0;
    left: 45px;
  }

  .Why-choose .card {
    padding: 25px 10px;
    min-height: 335px;
  }

  .our-conmmitment .conmmitment-content {
    background-color: #1C1B1B;
    padding: 10px 20px 5px 50px;
    margin-left: -100px;
    border-radius: 20px;
    position: relative;
    z-index: 00;
    margin-top: 10px;
  }

  .our-conmmitment .conmmitment-content h2 {
    font-size: 32px;
  }

  .our-conmmitment .commitment-right img {
    position: absolute;
    right: 0px;
    top: 70%;
    max-width: 330px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {

  .banner-slide .banner-content {
    text-align: left;
    padding: 125px 0 40px;
  }

  .banner-slide .banner-content h2 {
    font-size: 32px;
  }

  .banner-slide .generac img {
    max-width: 260px;
    position: absolute;
    bottom: 0;
    left: 44px;
  }

  .banner-slide .banner-list ul li:nth-child(2) {
    top: 55%;
    right: 0;
  }

  .counter h2 {
    font-size: 5rem;
    margin: 0;
    color: #000;
    font-weight: bold;
  }

  .counter {
    text-align: center;
    width: 24%;
  }

  .testimonials .testimonials-heading {
    padding-top: 20px;
  }

  .Why-choose .card {
    padding: 20px 5px;
    min-height: 320px;
  }

  .Why-choose .card p.card-text {
    font-size: 16px;
    font-weight: 300;
  }

  .our-conmmitment .commitment-right img {
    position: absolute;
    right: 0;
    top: 66%;
    max-width: 260px;
  }

  .our-conmmitment .conmmitment-content {
    margin-left: 0px;
  }

}


@media screen and (max-width: 1199px) {

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-toggler {
    border: 2px solid #000;
  }

  .navbar-collapse {
    background-color: #fff;
    padding: 20px 10px;
  }

  .our-categories ul.nav.nav-tabs {
    justify-content: center;
  }
}



@media screen and (max-width: 767px) {
  .counter {
    text-align: center;
    width: 42%;
  }

  .counter h2 {
    font-size: 4rem;
  }

  .counter-container {
    flex-wrap: wrap;
  }

  .contact-info .contact-info-details ul {
    padding: 0;
    grid-template-columns: auto;

  }

  .banner-slide .banner-content {
    text-align: left;
    padding: 150px 0 40px;
  }

  .banner-slide .generac img {
    max-width: 100% !important;
    position: initial !important;
  }

  .testimonials .testimonials-heading {
    padding-top: 30px;
  }

  .about-us .about-us-content,
  .services-page .services-page-content,
  .material-page .material-page-content {
    padding: 0 15px;
  }


  .Why-choose h2 {
    font-size: 32px;
  }

  .Why-choose .card {
    min-height: auto;
    margin-bottom: 30px;
  }

  .our-conmmitment .conmmitment-content {
    padding: 20px 20px 60px;
  }

  .our-conmmitment .commitment-right img {
    position: absolute;
    right: 30px;
    top: 66%;
    max-width: 250px;
  }

  .newsletter img {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .our-categories ul.nav.nav-tabs {
    justify-content: center;
  }

  .our-categories .image-box {
    margin-bottom: 20px;
  }

  #faqAccordion .accordion-button {
    font-size: 16px;
  }

  .blogs-box .card {
    min-height: auto;
  }

  .our-services .card {
    max-width: 100% !important;
  }

  .year-experience h2 {
    font-size: 42px;
  }

  .our-conmmitment .conmmitment-content {
    margin-left: 0px;
  }

  .second-divider {
    display: none !important;
  }
}

@media screen and (max-width: 579px) {
  .our-work h2 {
    font-size: 30px;
  }

  footer ul.footer-nav {
    flex-wrap: wrap;
    padding: 0 20px;
  }

  footer ul.footer-nav li {
    margin: 5px 10px;
  }


  .banner-slide .banner-list ul li:first-child {
    top: 40%;
    left: 0;
  }

  .banner-slide .banner-list ul li:nth-child(2) {
    top: 50%;
    right: 0px;
  }

  .banner-slide .banner-list ul li:nth-child(3) {
    bottom: 2%;
    left: 0;
  }

  .our-conmmitment .commitment-right img {
    position: initial;
    max-width: 100%;
  }

  .contact-info .contact-info-details ul li {
    font-size: 15px;
  }


}

@media screen and (max-width: 479px) {

  .banner-slide .banner-list ul li:nth-child(2) {
    top: 55%;
    right: 0px;
  }

  .year-experience h2 {
    font-size: 32px;
  }
}