* {
  margin: 0;
  padding: 0;
}
:root {
  --bs-primary: #d92519 !important;
  --bs-white: #fff !important;
  --bs-dark: #141615 !important;
  --bs-light: #444444 !important;
}
/* fixed-icon-start */
.fixed-icon {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 99999;
}

/* Spinner Start */
/* Spinner */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/* Spinner End */

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/* Button Start */
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
  background-color: var(--bs-dark);
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  color: var(--bs-primary);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}

/* Topbar Start */

.topbar .content a {
  text-decoration: none;
  font-weight: 500;
}

/* Topbar End */

/* Navbar */
.navbar-light .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-dark);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}
.navbar {
  background-color: #fff;
  color: var(--bs-dark) !important;
}
.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
  font-weight: 400 !important;
}

.navbar-light .navbar-nav .nav-item .nav-link {
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: var(--bs-primary);
  font-weight: 400;
}

.navbar-light .navbar-brand img {
  max-height: 100px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 100px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
  color: var(--bs-primary);
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white) !important;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-light);
  }

  .navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-light);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.801); */
    z-index: 999;
  }
  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-white);
    color: var(--bs-white);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    width: 2px;
    height: 12px;
  }
}




.dropdown-submenu {
  position: relative;
  transition: 0.5s ease !important;

  /* display: none; */
}
/* .dropdown-submenu .dropdown-menu{} */
.dropdown-submenu .dropdown-menu {
  position: absolute;
  /* transform: translateY(-100px); */
  left: 100%;
  margin-top: -40px;
  margin-left: 0;
  display: none !important;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block !important;
}

/* Hide the dropdown menu initially */
.dropdown-menu {
  display: none;
}

/* Show the dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Optional: Adding transition for smooth display */
.dropdown-menu {
  transition: opacity 0.3s ease;
}

/* .dropdown-menu.show {
  opacity: 1;
}

.dropdown-menu:not(.show) {
  opacity: 0;
} */

/* Navbar End */

/* Carousel Hero Header Start */
.header-carousel .header-carousel-item img {
  object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  height: 625px;
  width: 100%;
  object-fit: contain;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 60px;
  background: var(--bs-primary) !important;
  color: #fff !important;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  bottom: 60px;
  right: 50%;
  margin-right: 20px;
}
.header-carousel .owl-nav .owl-next {
  bottom: 60px;
  left: 50%;
}



@media(max-width:1000px){
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    text-align: left;
    font-size: 50px;
    bottom: 120px;
  }
}
@media (max-width: 991px) {
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    width: 20px;
    height: 20px;
    text-align: left;
    font-size: 10px;
    bottom: 0px;
  }
}
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-white);
  color: var(--bs-primary) !important;
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
 	padding-top:0 !important;
  /* background: rgba(110, 110, 110, 0.329); */
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header-carousel .header-carousel-item .carousel-caption {
    display: none;
  }
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .header-carousel .owl-nav .owl-prev {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -45px;
  }

  .header-carousel .owl-nav .owl-next {
    right: 20%;
    transform: translateX(-50%);
    margin-left: 45px;
  }
}

.header-carousel .header-carousel-item img {
  /* animation-name: image-zoom; */
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes image-zoom {
  0% {
    height: 100%;
    opacity: 0.9;
  }

  25% {
    height: 110%;
    opacity: 0.5;
  }

  50% {
    height: 115%;
    opacity: 1;
  }

  75% {
    height: 110%;
    opacity: 0.5;
  }

  100% {
    height: 100%;
    opacity: 0.9;
  }
}
.brand {
  background: linear-gradient(#41414194, rgba(0, 0, 0, 0.795)), url(../images/services-image/client.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background: #414141; */
  color: #fff;
}
/* Carousel Hero Header End */
/* about us start */
.about {
  background: linear-gradient(
      rgba(255, 255, 255, 0.918),
      rgba(255, 255, 255, 0.932)
    ),
    url(../images/services-image/Imag_3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about h1 {
  color: var(--bs-light);
  font-weight: 300;
}
.about .para {
  text-align: justify;
}
/* service card css start */
.services .service-card {
  border-radius: 10px;
  overflow: hidden;
  height: 520px;
  transition: 0.5 ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.services .service-card .service-img {
  position: relative;
  width: 100%;
}

.services .service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.services .service-card:hover .service-img img {
  transform: scale(1.06);
}
.services .service-card:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.services .service-card:hover .service-content {
  background-color: #444444;
  color: #fff;
}
.services .service-content {
  padding: 5px 15px;
  transition: 0.5s ease-in-out;
  height: 100%;
}
.services .service-content a {
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid #4444;
  color: #000;
  font-weight: 400;
}
.services .service-card:hover .service-content a {
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid #fff;
  color: #000;
  background-color: #fff;
}
.services .service-content p {
  text-align: justify;
  font-size: 15px;
}
.line {
  height: 3px;
  width: 50px;
  background-color: var(--bs-primary);
  display: inline-block;
  transition: 0.5s ease-in-out;
}
.services .service-card:hover .line {
  background-color: #fff;
}
.services .view-all-card a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 5px 15px;
  border: 1.5px solid var(--bs-light);
  transition: 0.5s ease-in-out;
}
.services .view-all-card a:hover {
  color: var(--bs-white);
  background-color: var(--bs-light);
  padding: 5px 15px;
  border: 1.5px solid var(--bs-white);
}
/* service card css end */
/* our products start */
.our-products .product-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.our-products .product-card a {
  text-decoration: none;
}
.our-products .product-card a:hover .product-name {
  background-color: #fff;
  color: #d92519;
  border: 1px solid #afafaf;
}

.our-products .product-card .product-name {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  border: 1px solid #afafaf;
  background-color: #000000;
  color: #fff;
  transition: 0.5s ease-in-out;
}
/* our products end */
/* industries we serve start */
.industries .inustry-card {
  position: relative;
  overflow: hidden;
}
.industries .inustry-card .img-content img {
  transition: 0.6s ease-in-out;
}
.industries .inustry-card:hover .img-content img {
  transform: scale(1.06);
}

.industries .inustry-card .overflow-text {
  position: absolute;
  transform: translateY(-100%);
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #4444447c;
  padding: 10px 20px;
}
/* industries we serve end */
/* contact-us-start */
.contact-us {
  background: linear-gradient(#4444449f, rgba(0, 0, 0, 0.733)),
    url(../images/banner/contact-us.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.contact-us .contact-addr {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-us .contact-addr {
    margin-top: 0px;
  }
}

.contact-us .form form button {
  background-color: #000 !important;
  color: #fff;
  padding: 15px 0px;
  transition: 0.5s ease;
}

.contact-us .form form button:hover {
  background-color: #fff !important;
  color: #d92519;
}
.contact-us input {
  background: #00000033 !important;
  color: #fff !important;
  height: 74px;
}
.contact-us input::placeholder {
  color: #fff !important;
}
/* contact-us end */
/* blogs start */
.blogs .blog-card {
  padding: 0px 0px 10px 0px;
  border-bottom: 1px solid #444444;
}
.blogs .blog-card .img {
  overflow: hidden;
  border-radius: 10px;
}
.blogs .blog-card .blog-content p {
  text-align: justify;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blogs .blog-card .blog-content a {
  text-decoration: none;
  color: #d92519;
  font-weight: 500;
  transition: 0.5s ease;
}
.blogs .blog-card .blog-content a:hover {
  letter-spacing: 3px;
}
/* bogs end */

/* footer start */

.footer {
  position: relative;
  /* margin-top: 45px; */
  padding-top: 80px;
  padding-bottom: 40px;
  /* background: ; */
  color: #ffffff;
  background: linear-gradient(#444444e0, rgba(0, 0, 0, 0.863)),
    url(../images/industries-images/footer-image.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer .footer-about,
.footer .footer-link,
.footer .footer-contact {
  position: relative;
  margin-bottom: 45px;
  color: #fff;
}

.footer .footer-about h2,
.footer .footer-link h2,
.footer .footer-contact h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 600;
  color: var(--bs-white);
}

.footer .footer-link a {
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  color: #fff;
  transition: 0.3s;
}

.footer .footer-link a::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .footer-link a:hover {
  color: var(--bs-primary);
  letter-spacing: 1px;
}
.footer .footer-about a img {
  height: 130px;
}
.footer .footer-contact p i {
  width: 25px;
}

.footer .footer-social {
  position: relative;
  margin-top: 20px;
}

.footer .footer-social a {
  display: inline-block;
}

.footer .footer-social a i {
  margin-right: 15px;
  font-size: 18px;
  color: var(--bs-white);
  transition: 0.5s ease-in-out;
}

.footer .footer-social a:last-child i {
  margin: 0;
}

.footer .footer-social a:hover i {
  color: var(--bs-primary);
}

.footer .footer-menu .f-menu {
  position: relative;
  padding: 15px 0;
  /* background: var(--red); */
  background: var(--bs-dark);
  font-size: 0;
  text-align: center;
}

.footer .footer-menu .f-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu .f-menu a:hover {
  color: var(--bs-primary);
}

.footer .footer-menu .f-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer .copyright {
  padding: 30px 15px;
}

.footer .copyright p {
  margin: 0;
  color: #fff;
}

.footer .copyright .col-md-6:last-child p {
  text-align: right;
}

.footer .copyright p a {
  color: var(--red);
  font-weight: 500;
  letter-spacing: 1px;
}

.footer .copyright p a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer .copyright p,
  .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}
/* footer end */
/* about-us-start */
.about-banner-part {
  padding: 100px 0px;
  background: url("../images/banner/responsive-about-banne.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .about-banner-part {
    padding: 30px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .about-banner-part h1 {
    font-size: 18px !important;
  }
}
@media (max-width: 450px) {
  .about-banner-part {
    padding: 30px 0px;
    background: url("../images/banner/responsive-about-banne.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .about-banner-part h1 {
    padding-top: 8px;
    /* padding: 30px 10px; */
    font-size: 16px !important;
  }
  .about-banner-part .bread-crumb {
    display: none;
  }
}

.about-banner-part .text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about-banner-part .text .bread-crumb p a {
  text-decoration: none;
  color: #fff;
}
/* about-us-end */
/* blog-details-start */
.blog-details .blog-content p {
  text-align: justify;
}

.blog-details .blog-content .social .facebook {
  text-decoration: none;
  background-color: #005ff8;
  color: #fff;
  padding: 4px 8px;
  font-size: 22px;
  border-radius: 2px;
}

.blog-details .blog-content .social .whatsapp {
  text-decoration: none;
  background-color: #25d366;
  border-radius: 2px;
  color: #fff;
  padding: 4px 8px;
  font-size: 22px;
}

.blog-details .blog-content .social .twitter {
  text-decoration: none;
  background-color: #16a2ff;
  color: #fff;
  padding: 4px 8px;
  font-size: 22px;
  border-radius: 2px;
}

.blog-details .blog-content .social .linkedin {
  text-decoration: none;
  background-color: #3691d9;
  color: #fff;
  padding: 4px 8px;
  font-size: 22px;
  border-radius: 2px;
}
.blog-details .latest-blog .img {
  display: flex;
  justify-self: center;
  align-items: center;
}
.blog-details .latest-blog {
  padding: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blog-details .latest-blog a {
  text-decoration: none;
}
.blog-details .latest-blog .latest-content h6 {
  color: #000;
	    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-details .latest-blog .latest-content p {
  color: #000;
}
/* enquiry form sec start */
.enquiry .img {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #41414141;
}
.enquiry .para p {
  text-align: justify;
}
.enquiry .img img {
  width: 550px;
}

.contact-form-sec-form {
  background: linear-gradient(#0000009c, #00000098),
    url(../images/banner/contact-us.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.contact-form-sec input:focus {
  background: #00000036;
  border-color: #ced4da;
  border-radius: none;
  color: #fff;
}
.contact-form-sec-form input {
  background: #00000033 !important;
  color: #fff !important;
  height: 67px;
}
.contact-form-sec-form input::placeholder {
  color: #fff !important;
}
.contact-form-sec-form form .submbtn:hover {
  background-color: var(--bs-light);
  color: #fff;
}
.contact-form-sec-form form .submbtn {
  background-color: var(--bs-white);
  color: var(--bs-dark);
  border: 1px solid var(--bs-light);
}
.contact-form-sec .form-input .form-control {
  border-radius: 6px;
  height: 60px;
}

.contact-form-sec textarea:focus {
  background: #00000034;
  border-color: transparent;
  border-left: 5px solid #ff7029;
  border-radius: none;
  color: #fff;
}
.contact-form-sec textarea {
  background: #00000034;
  height: 120px;
  border-radius: 6px;
  color: #fff;
  width: 100%;
}
.contact-form-sec textarea::placeholder {
  color: #fff;
}
.contact-form-area .cintact-form-btn a {
  display: inline-block;
  width: 570px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-area .cintact-form-btn a {
    width: 270px;
  }
}
@media (max-width: 767px) {
  .contact-form-area .cintact-form-btn a {
    width: 270px;
  }
}

/* captcha new design start */
.captchasep1 {
  display: flex;
}

.captchasep1 input {
  width: 100% !important;
  margin-top: 0 !important;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-top: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  background: url(../images/logo/captcha.jpg);
  font-weight: bolder !important;
}

.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 28px;
  padding: 10px;
  height: 100%;
  font-weight: bolder !important;
}
.captchasep1 .captcha-codes-sec {
  margin-bottom: 10px;
}
.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  background: transparent;
  height: 100%;
  border: none;
  font-weight: bolder;
}

.captchasep1 .captcha-codes-sec button i {
  /* background: var(--purple); */
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}

@media screen and (max-width: 600px) {
  .captchasep1 {
    display: flex;
    flex-direction: column !important;
  }

  .captchasep1 .captcha-codes-sec {
    border-left: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    margin-top: 3px;
  }
}

.bg-danger22 {
  background-color: var(--yellow) !important;
}


/* counter css start */
.counter .texttt{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;

}
.counter .texttt h5{
  color: var(--bs-white);
  
}

.counter{
  background:linear-gradient(#41414194,#3d383875),url(../images/banner/acheivement_counter.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter .counter-box {
  background-color: #ffffff8c;
  box-shadow: #ffffff33 0px 7px 29px 0px ;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.counter .counter-box .inner-box {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: solid 4px #F21B39 !important;
    display: flex;
    justify-content: center;
    align-items: center;
 
}
.counter .counter-box .inner-box span{
  font-size: 28px;
  font-weight: bolder;
}
.counter .counter-box .inner-text p{
  font-size: 22px;
  text-align: center;
  margin-bottom: 0px !important;
}
/* counter section end */


/* ac consulting service css start */


.bg-danger22 {
  background-color: var(--dark) !important;
}


.why-us-para p{
  text-align: justify;
}
.why-us-points p{
    text-align: justify;
}
/* ac consulting service css end */
.form-div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px !important;
  /* border: 1px solid #000; */

}

.form-div form {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 25px 15px;
}

.form-div form .captcha-codes-sec p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px !important;
  font-size: 25px;
  font-style: italic;
  color: #fff;
  font-weight: 700 !important;

}
.form-div form input{
  height: 50px;
}

.form-div form .captcha-codes-sec {
  background: url(../images/logo/captcha.jpg);
  height: 73%;
}

.form-div form .captcha-codes-sec button {
  background-color: #000 !important;
  color: #fff;
}
/* fan-prodect css start */


@media (max-width: 280px) {
  .our-product .box {
      max-height: 163px !important;
  }
}
  #about-col:hover .hvr-float-shadow,
  #about-col .hvr-float-shadow:focus,
  #about-col .hvr-float-shadow:active {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
  }

  #about-col:hover .hvr-float-shadow:before,
  #about-col .hvr-float-shadow:focus:before,
  #about-col .hvr-float-shadow:active:before {
      opacity: 1;
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
  }

  #about {
      padding-bottom: 50px;
      padding-top: 50px;
  }

  .card {
      transition: 0.4s all ease-in;
      border: none;
      box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
      
  }

  .product-img-section {
      padding: 0 10px 0 10px;
  }

  .product-detail {
      position: absolute;
      height: 75px;
      left: 15px;
      right: 15px;
      bottom: 15px;
      overflow: hidden;
      padding: 15px;
      background-color: rgba(10, 10, 10, 0.493);
      transition: all 0.35s;
      text-align: center;
      box-sizing: border-box;
  }

  .card .product-detail h3 {
      /* font-family: "Oswald"; */
      /* text-transform: uppercase; */
      font-size: 25px;
      font-weight: 500;
      line-height: 24px;
      margin: 3px 0;
      color: var(--bs-white);
  }

  .card .product-detail .subheading {
      font-weight: 400;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: center;
      color: #000000c9;
  }

  .card:hover .product-detail {
      height: calc(92%);
      padding-top: 100px;
  }

  .product-section {
      padding: 0;
  }
  .our-product .product-detail .fan-btn{
    text-decoration: none;
    border: none;
    color: #fff;
    padding: 8px 20px;
    background-color: #d92519;
    transition: 0.5s ease-in-out;
}
.our-product .product-detail .fan-btn:hover{
    background-color: #fff;
    color: #000;
}


  /* ceiling fan start */

  .celling-content {
    text-align: justify;
    font-size: 18px;

}
.celling-card{
    overflow: hidden;
    transition: 0.5s ease-in-out;
    /* text-align: center; */
}
.celling-card .celling-product-name{
    padding: 5px 10px;
}
.celling-card .celling-img{
    overflow: hidden;
}
.celling-card:hover .celling-img img{
    transform: scale(1.1) !important;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}
.celling-card .celling-size p{
    text-decoration: none;
    color: #000;
    font-size: 14px;
    padding: 0px 5px;
    border: 1px solid #000;
    margin: 2px;
}
.celling-card .celling-size {
  padding-left: 8px;
}
.celling-btn a{
    text-decoration: none;
    padding: 10px;
    padding: 5px 10px;
    background-color: #d92519;
    border-radius: 0;
    color: #fff;
    margin: 5px 5px 15px 5px;
}
 .celling-btn button{
  padding: 10px;
  padding: 5px 10px;
  background-color: #d92519;
  border-radius: 0;
  color: #fff;
  margin: 5px 5px 15px 5px;
}
.celling-btn{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-products .celling-card .color-img {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.our-products .celling-card .color-img .img {
  border-radius: 50%;
  border: 1px solid #21212121;
  padding: 2px;
  overflow: hidden;
}

.our-products .color-img input[type="radio"] {
  display: none;
}

.our-products .color-img input[type="radio"]+label span {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}

input[type="radio"]#red+label p {
  background-color: #C91524;
}

input[type="radio"]#blue+label p {
  background-color: #314780;
}

input[type="radio"]#black+label p
}
input[type="radio"]#brown+label p {
  background-color: brown;
}

input[type="radio"]:checked+label p {
  background-image: url(images/check-icn.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.star {
  position: absolute;
  /* left: 0 !important; */
   /* right: 10px; */
   font-size: 22px;
   font-weight: 700;
  top: 0px;
  text-align: right;

  height: 100%;
  width: 100%;
}
.star p i{
  font-size: 18px;
  color: #ff9529;
}

.our-client{
  background: linear-gradient(#41414194, rgba(0, 0, 0, 0.795)), url(../images/client-image/client-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}