@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  /* --primary: #ff5e14; */
  --primary: #c73637;
  --secondary: #5f656f;
  --light: #f5f5f5;
  --dark: #02245a;
  --popp: "Poppins", sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

.fw-semi-bold2 {
  font-weight: 500 !important;
}

a {
  text-decoration: none;
}

.my-10 {
  margin-block: 6rem;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
  -webkit-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  -moz-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  -ms-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  -o-transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.topbar a {
  color: #fff;
}

.topbar-right {
  position: relative;
  background: var(--primary);
}

.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: var(--primary);
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  position: relative;
  padding-right: 50px;
  padding-block: 10px;
  height: 85px;
  display: flex;
  /* align-items: center; */
  /* background: var(--primary); */
}

/* .navbar .navbar-brand::after {
   position: absolute;
   content: "";
   width: 50px;
   height: 100%;
   top: 0;
   right: -25px;
   transform: skewX(-30deg);
   background-color: var(--primary);
   -webkit-transform: skewX(-30deg);
   -moz-transform: skewX(-30deg);
   -ms-transform: skewX(-30deg);
   -o-transform: skewX(-30deg);
} */

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 28px 0;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border-bottom: 1px solid black;
  border-radius: var(--bs-dropdown-border-radius);
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 75%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
    background-color: #fdfdfd;
    box-shadow: 0px 2px 3px #424141ab;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(to left, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 3.5rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/aboutp-bg.webp) center center no-repeat;
  background-size: cover;
  background-position: top;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Facts ***/
.facts {
  position: relative;

  background: var(--dark);
}

.facts .border {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.facts .div {
  border: white 1px solid;
  background-color: #fffbff;
  padding: 30px 12px;
  position: relative;
  margin: 20px;
  color: var(--primary);
  margin-top: 20px;
  border-radius: 10px;
}

.facts .div h1,
.facts .div span {
  color: #02245a;
}

.facts .div .abs {
  color: #c32729;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #eeeeeec7;
  font-size: 45px;
  padding: 15px;
  width: 75px;
  border-radius: 50%;
  height: 75px;
}

/*** Features ***/
.btn-play {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--primary);
}

@media (max-width: 992px) {
  .btn-play {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Service ***/
.service-item {
  position: relative;
  margin: 65px 0 25px 0;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item img {
  border-radius: 9px;
}

.service-item .service-img {
  position: absolute;
  padding: 3px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  top: -95px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #ff6e7f, var(--primary), blue);

  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
  background-size: 400% 100%;
  animation: gradientAnimation2 6s ease infinite;
}

.service-item .service-img img {
  border-radius: 50%;
}

.service-item .service-detail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.service-item .service-title {
  position: absolute;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  transition: 0.5s;
  border-radius: 9px;
}

.service-item:hover .service-title {
  top: -100%;
}

.service-item .service-text {
  position: absolute;
  overflow: hidden;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  display: flex;
  align-items: center;
  text-align: center;
  /* background: rgba(2, 36, 91, 0.7); */
  transition: 0.5s;
}

.service-item:hover .service-text {
  top: 0;
}

.service-item .service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  top: -100%;
  left: 0;
  transform: skewY(-12deg);
  background: #ffffff;
  transition: 0.5s;
}

.service-item:hover .service-text::before {
  top: -55px;
}

.service-item .btn {
  position: absolute;
  width: 130px;
  height: 50px;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: #ffffff;
  border: none;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
}

.service-item .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Project ***/
.project-carousel {
  position: relative;
  /* background: var(--dark); */
}

.project-item {
  position: relative;
  display: block;
  height: 90px;
}

.project-item img {
  transition: 0.5s;
  height: 90px;
}

.project-item .project-title {
  position: absolute;
  padding: 0 15px;
  width: 100%;
  height: 80px;
  bottom: -110px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  transition: 0.5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
  bottom: -60px;
}

.project-item .project-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  top: -15px;
  left: 0;
  transform: skewY(-5deg);
  background: var(--dark);
  transition: 0.5s;
}

.project-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.project-carousel:hover .owl-nav {
  opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin: 0 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

/*** Team ***/
.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  display: flex;
  align-items: center;
  background: var(--primary);
  transition: 0.5s;
}

.team-item:hover .team-social {
  left: 0;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (min-width: 768px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 448px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;

  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

/*** Footer ***/
.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
  margin-left: 10px;
  /* text-decoration: underline; */
}

.working-block {
  display: block;
}

.working-block .working-block-two {
  max-width: 300px;
  width: 100%;
  margin: auto;
}

.footer {
  color: #b0b9ae;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
  text-decoration: none;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
  margin-left: 10px;
  /* text-decoration: underline; */
}

.copyright {
  color: #b0b9ae;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ************all products********* */

.all-pro .pro-img {
  position: relative;
  /*background: linear-gradient(to right, var(--primary), orange);*/
  padding: 3px;
  border-radius: 50%;
  overflow: hidden;
  background-size: 200% 400%;
  animation: gradientAnimation 3s ease infinite;

  /* border:4px solid var(--primary);
   border-radius: 50%;
   overflow: hidden; */
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 25%;
  }

  2% {
    background-position: 25% 50%;
  }

  25% {
    background-position: 30% 55%;
  }

  35% {
    background-position: 50% 75%;
  }

  60% {
    background-position: 75% 100%;
  }

  70% {
    background-position: 75% 50%;
  }

  85% {
    background-position: 50% 25%;
  }

  100% {
    background-position: 25% 0%;
  }
}

@keyframes gradientAnimation2 {
  0% {
    background-position: 0% 25%;
  }

  5% {
    background-position: 25% 50%;
  }

  20% {
    background-position: 30% 55%;
  }

  35% {
    background-position: 50% 75%;
  }

  60% {
    background-position: 75% 100%;
  }

  70% {
    background-position: 75% 50%;
  }

  85% {
    background-position: 50% 25%;
  }

  100% {
    background-position: 25% 0%;
  }
}

.all-pro .pro-img img {
  padding: 1px;
  border-radius: 50%;
}

.all-pro .pro-title {
  margin: 20px 0;
  text-align: center;
}

.all-pro .pro-title a {
  font-size: 17px;
  font-weight: 400;
  color: black;
  font-weight: 600;
}

.all-pro .pro-title a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

.all-pro .view a {
  text-decoration: underline;
  font-size: 20px;
}

/* ***********product page***** */

.product .pro-price {
  display: inline-block;
  margin-right: 20px;
}

.product .img-cont {
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.product .img-cont img {
  width: 100%;
}

.product table th {
  font-weight: 500;
}

/* ***********client section***** */

.client {
  background: linear-gradient(to bottom, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/color\(5\).jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: top;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client .container-fluid {
  position: relative;
  z-index: 1;
}

.client .project-carousel {
  position: relative;
  z-index: 2;
}

.owl-stage {
  display: flex;
  align-items: center;
}

/* ***about us seciton********* */

.about_sec .about_list p {
  display: flex;
  align-items: start;
}

/* **********faq************ */
/* Styling for FAQ section */
#faq {
  padding: 50px 0;
  /* Adjust as needed */
}

#faq h2 {
  text-align: center;
  margin-bottom: 40px;
  /* Adjust as needed */
}

.card-header h3 {
  margin: 0;
}

.card-header button {
  width: 100%;
  text-align: left;
}

.card-body {
  padding: 20px;
}

/* Optional: Add styles for hover and active states */

.accordion {
  .accordion-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 10px;

    button[aria-expanded="true"] {
      border-bottom: 1px solid #0d6efd;
    }
  }

  button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: black;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;

    &:hover,
    &:focus {
      cursor: pointer;
      color: #373372;

      &::after {
        cursor: pointer;
        color: #03b5d2;
        border: 1px solid #03b5d2;
      }
    }

    .accordion-title {
      padding: 1em 1.5em 1em 0;
    }

    .icon {
      display: inline-block;
      position: absolute;
      top: 18px;
      right: 0;
      width: 22px;
      height: 22px;
      border: 1px solid;
      border-radius: 22px;
      margin: 10px;

      &::before {
        display: block;
        position: absolute;
        content: "";
        top: 9px;
        left: 5px;
        width: 10px;
        height: 2px;
        background: currentColor;
      }

      &::after {
        display: block;
        position: absolute;
        content: "";
        top: 5px;
        left: 9px;
        width: 2px;
        height: 10px;
        background: currentColor;
      }
    }
  }

  button[aria-expanded="true"] {
    color: #0d6efd;

    .icon {
      &::after {
        width: 0;
      }
    }

    + .accordion-content {
      opacity: 1;
      max-height: 9em;
      transition: all 200ms linear;
      will-change: opacity, max-height;
    }
  }

  .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;

    p {
      font-size: 1rem;
      font-weight: 300;
      margin: 2em 0;
    }
  }
}

.map_sec {
  line-height: 0;
}

/* **************why choose us***************** */

/* .feat h1,
.feat h2,
.feat h3,
.feat h4,
.feat h5,
.feat h6 {
}
.feat a,
.feat a:hover,
.feat a:focus,
.feat a:active {
  text-decoration: none;
  outline: none;
} */

.feat a,
a:active,
.feat a:focus {
  color: #333;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

.feat ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feat img {
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
}

.feat span,
a,
a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.feat .section-head {
  margin-bottom: 60px;
}

.feat .section-head h4 {
  position: relative;
  padding: 0;
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.feat p.service_text {
  color: #cccccc !important;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.feat .section-head p,
p.awesome_line {
  color: #818181;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.feat .extra-text {
  font-size: 34px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 25px;
  position: relative;
  text-transform: none;
}

.feat .extra-text::before {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.feat .extra-text span {
  font-weight: 700;
  color: var(--primary);
}

.feat .item {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feat .item:hover {
  background: var(--dark);
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feat .item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feat .item:hover h6,
.item:hover p {
  color: #fff;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feat .item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: var(--dark);

  width: 100px;
  height: auto;
  /* width: 245px;
height: 245px; */
  line-height: 96px;
  /* border-radius: 50px; */
}

.feat .item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: var(--dark);
}

.feat .item p {
  font-size: 15px;
  line-height: 26px;
}

.feat .item h6 {
  margin-bottom: 20px;
  color: #2f2f2f;
}

.feat .item2 {
  background: #fff;
  /* text-align: center; */
  padding-right: 6px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  /* border:5px solid rgba(0, 0, 0, 0.07); */
  box-shadow: 0 2px 12px #ccc;
  margin-bottom: 30px;
  margin-inline: 1px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feat .item2:hover {
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);

  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feat .item2:hover h5 {
  text-decoration: underline;
  color: red;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feat .content {
  padding: 10px;
}

.feat .content p span {
  font-weight: 500;
  color: black;
}

.feat .pro-img {
  overflow: hidden;
}

.feat .pro-img img {
  transition: transform ease 2s;
}

.feat .item2:hover .pro-img img {
  transform: scale(1.1);
}

.feat .item2:hover .item2,
.item2:hover span.icon {
  border-radius: 10px;

  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.feat .item2 .col-md-12 {
  padding-left: 0px;
}

.feat .item2 .icon2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: var(--dark);
  width: 245px;
  height: 245px;
  line-height: 96px;
  border-radius: 50px;
}

.feat .mission p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.feat .mission i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}

.feat .mission .small-text {
  margin-left: 10px;
  font-size: 13px;
  color: #666;
}

.feat .skills {
  padding-top: 0px;
}

.feat .skills .prog-item {
  margin-bottom: 25px;
}

.feat .skills .prog-item:last-child {
  margin-bottom: 0;
}

.feat .skills .prog-item p {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.feat .skills .prog-item .skills-progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.feat .skills .prog-item .skills-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--primary);
  width: 10%;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.feat .skills .prog-item .skills-progress span:after {
  content: attr(data-value);
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 3px 7px;
  border-radius: 30px;
}

/* CSS */
.button-59 {
  align-items: center;
  background-color: #fff;
  border: 2px solid var(--primary);
  box-sizing: border-box;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: -0.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-59:focus {
  color: #171e29;
}

.button-59:hover {
  border-color: var(--primary);
  color: white;
  background-color: var(--primary);
}

@media (min-width: 768px) {
  .button-59 {
    min-width: 170px;
  }
}

/* CSS */
.button2 {
  align-items: center;
  background-color: #fff;
  border: 2px solid green;
  box-sizing: border-box;
  color: green;
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: -0.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button2:focus {
  color: #171e29;
}

.button2:hover {
  border-color: var(--primary);
  color: white;
  background-color: var(--primary);
}

@media (min-width: 768px) {
  .button-59 {
    min-width: 170px;
  }
}

.explore {
  color: var(--primary);
  text-decoration: underline;
  font-size: 18px;
  font-weight: 500;
}

.explore:hover {
  color: var(--primary);
}

/* ************product recent post ************ */

.product img {
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
}

.product span,
a,
a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.product .section-head {
  margin-bottom: 60px;
}

.product .item {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.product .item:hover {
  background: var(--dark);
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.product .item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.product .item:hover h6,
.item:hover p {
  color: #fff;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.product .item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: var(--dark);

  width: 100px;
  height: auto;
  line-height: 96px;
}

.product .item .producture_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: var(--dark);
}

.product .item p {
  font-size: 15px;
  line-height: 26px;
}

.product .item h6 {
  margin-bottom: 20px;
  color: #2f2f2f;
}

.product .item2 {
  background: #fff;
  text-align: center;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
  overflow: hidden;
}

.product .item2:hover {
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.product .item2:hover .item2,
.item2:hover span.icon {
  border-radius: 10px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
}

.product .item2 .icon2 img {
  transition: transform 1s ease;
}

.product .item2 .icon2 img:hover {
  transform: scale(1.1);
}

.product .item2 .icon2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: var(--dark);
  width: 245px;
  height: 245px;
  line-height: 96px;
  border-radius: 50px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .product .item2 .icon2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--dark);
    width: 205px;
    height: 205px;
    line-height: 96px;
    border-radius: 50px;
  }
}

@media (max-width: 768px) {
  .product .item2 .icon2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--dark);
    width: 238px;
    height: 238px;
    line-height: 96px;
    border-radius: 50px;
  }
}

/* *************pop up*************   */
/* Popup Container */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9999;
}

/* Popup Content */
.popup-content {
  background-color: white;
  width: 80%;
  max-width: 500px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.popup-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 34px;
  color: #fff;
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
}

#contactForm label {
  display: block;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

#contactForm textarea {
  resize: vertical;
}

#contactForm button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contactForm button:hover {
  background-color: #0056b3;
}

/* styles.css */

/* Styling for popular products section */
#popular-products {
  background-color: #f8f9fa;
  padding: 50px 0;
}

#popular-products .section-title {
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  text-transform: uppercase;
}

#popular-products .card {
  border: none;
  transition: box-shadow 0.3s ease;
  border-radius: 10px;
  background-color: #fff;
}

#popular-products .card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#popular-products .card-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

#popular-products .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 1rem;
}

#popular-products .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* crousel start  */
#main_crousel .item {
  height: 86vh;
  overflow: hidden;
  position: relative;
}

#main_crousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 4s linear;
}

#main_crousel .item .cover {
  /*padding: 75px 0;*/
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background: linear-gradient(112.1deg, #000000a1 25%, #a5aaba26 75%); */
  background: linear-gradient(112deg, #000000cc 15%, #a5aaba1b 75%);
  display: flex;
  align-items: center;
}

#main_crousel .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}

#main_crousel .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 6px solid #fffa;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

#main_crousel .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}

#main_crousel .item .cover .header-content h1 {
  font-size: 3rem;
  font-weight: 600 !important;
  color: #fff7f7;
  /*text-transform: capitalize;*/
}

#main_crousel .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}

#main_crousel .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

#main_crousel .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

#main_crousel .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

#main_crousel .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

#main_crousel .owl-item.active img {
  transform: scale(1.08);
}

#main_crousel .owl-item.active img {
  transform: scale(1.08);
}

#main_crousel .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  display: flex;
  border-radius: 49%;
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background-color: #ffffffc1;
  /* background-color: #ffffff90; */
  width: 50px;
  cursor: pointer;
  height: 50px;
  outline: none;
  border: none;
  display: flex;
  z-index: 1000;
  color: #000;
  justify-content: center;
  align-items: center;
}

#main_crousel .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

#main_crousel .owl-nav .owl-prev:focus {
  outline: 0;
}

#main_crousel .owl-nav .owl-prev:hover {
  background: #000 !important;
  color: #fff;
}

#main_crousel .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  display: flex;
  border-radius: 49%;
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  /* background-color: #ffffff91; */
  background-color: #ffffffc1;
  width: 50px;
  color: #000;
  cursor: pointer;
  height: 50px;
  display: flex;
  outline: none;
  z-index: 1000;
  border: none;
  justify-content: center;
  align-items: center;
}

#main_crousel .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

#main_crousel .owl-nav .owl-next:focus {
  outline: 0;
}

#main_crousel .owl-nav .owl-next:hover {
  background: #000 !important;
  color: #fff;
}

#main_crousel:hover .owl-prev {
  left: 30px;
  opacity: 1;
}

#main_crousel:hover .owl-next {
  right: 30px;
  opacity: 1;
}

#main_crousel p {
  font-size: 20px;
  color: #fff;
}

/* crousel end */
#header {
  box-shadow: 0px 2px 8px #00000014;
}

/* why choose us  */
.auto-container {
  position: static;
  max-width: 1200px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.working-style-two .inner-container {
  position: relative;
  border: 1px solid #e3e8eb;
  border-radius: 30px 30px 0px 30px;
}

.working-block:first-child .working-block-two .inner-box {
  padding-left: 29px;
}

.working-block-two .inner-box {
  position: relative;
  display: block;
  padding: 29px 14px;
}

.working-block-two .inner-box .upper-box {
  position: relative;
}

.working-block-two .inner-box .upper-box h6 {
  text-align: center;
  position: relative;
  font-size: 1.3rem;
  font-weight: 600 !important;
  color: #02245a;
}

.working-block-two .inner-box .upper-box p {
  text-align: center;
  position: relative;
  font-size: 1.1rem;
}

.working-block-two .inner-box .upper-box .count-text {
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  font-size: 129px;
  line-height: 120px;
  font-family: "Urbanist", sans-serif;
  /* color: #eef3f6; */
  font-weight: 700;
  /* color: #e9e9e9; */
  color: #e9e9e9d4;
}

.working-block-two .inner-box .icon-box {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 45px;
  color: #c52d2f;
  line-height: 60px;
  margin-bottom: 15px;
}

.inner-container {
  position: relative;
  border: 1px solid #e3e8eb;
  border-radius: 30px 30px 0px 30px;
}

.working-block-two .inner-box:before {
  position: absolute;
  content: "";
  background: #e3e8eb;
  width: 1px;
  height: 150%;
  top: 0px;
  right: -15px;
}

.working-block:last-child .working-block-two .inner-box:before {
  display: none;
}

/* social icon  */
.social-menu ul {
  display: flex;
}

.social-menu ul li {
  list-style: none;
  margin: 0 5px;
}

.social-menu ul li .fab {
  font-size: 20px;
  line-height: 40px;
  transition: 0.3s;
  /* color: #212529; */
}

.social-menu ul li:nth-child(1) {
  color: #45a4e1;
}

.social-menu ul li:nth-child(2) {
  color: #3b5693;
}

.social-menu ul li:nth-child(3) {
  color: #f70000;
}

.social-menu ul li:nth-child(4) {
  color: #000;
}

.social-menu ul li:hover {
  color: #fff;
}

.social-menu ul li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee;
  text-align: center;
  transition: 0.6s;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
}

.social-menu ul li a:hover {
  transform: translate(0, -10%);
}

.social-menu ul li:nth-child(1) a:hover {
  background-color: #45a4e1;
}

.social-menu ul li:nth-child(2) a:hover {
  background-color: #3b5693;
}

.social-menu ul li:nth-child(3) a:hover {
  background-color: #f70000;
}

.social-menu ul li:nth-child(4) a:hover {
  background-color: #000;
}

/* social icon end */
/* about  */
.about-image-card.style-2 .main-img-wrapper .main-img-inner {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-area.style-2 {
    padding: 100px 0px !important;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-us-area.style-2 {
    padding: 80px 0px !important;
  }
}

.about-image-card.style-2 .main-img-wrapper .main-img-inner > img {
  outline: 2px solid #fff;
  outline-offset: -10px;
  max-width: 350px;
}

.about-image-card.style-2 .main-img-wrapper .main-img-inner .img {
  position: relative;
  top: 0;
  left: 0;
  max-width: 380px;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image-card.style-2 .main-img-wrapper .main-img-inner .img {
    width: 380px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image-card.style-2 .main-img-wrapper .main-img-inner .top-image {
    left: unset;
    right: 0;
    top: 250px;
  }
}

.about-image-card.style-2 .main-img-wrapper .main-img-inner .top-image {
  position: absolute;
  top: 62%;
  left: 36%;
  overflow: hidden;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.about-image-card.style-2 .main-img-wrapper .main-img-inner .top-image img {
  position: relative;
  margin-top: 35px;
  margin-left: 30px;
  max-width: 90%;
  z-index: 2;
  /* border-bottom-right-radius: 50%; */
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image-card.style-2 .main-img-wrapper .main-img-inner .top-image img {
    width: 300px;
    border-bottom-right-radius: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image-card.style-2 .main-img-wrapper .main-img-inner .img {
    width: 380px;
  }
}

.about-image-card.style-2 .main-img-wrapper .main-img-inner .img {
  position: relative;
  top: 0;
  left: 0;
  max-width: 380px;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image-card.style-2 .main-img-wrapper .review-card {
    margin-top: 30px;
    padding: 20px;
  }
}

.about-image-card.style-2 .main-img-wrapper .review-card {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  max-width: 200px;
  border-radius: 10px;
  width: 100%;
  background-color: #c32728;
  padding: 0.8rem 10px 0.6rem 1rem;
  margin-top: 1.5rem;
  z-index: 2;
}

.about-image-card.style-2 .main-img-wrapper .review-card .icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-image-card.style-2 .main-img-wrapper .review-card .card-text h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-transform: capitalize;
}

.about-image-card.style-2 .main-img-wrapper .review-card .card-text span {
  color: #ffffff;
  text-transform: capitalize;
}

.about-image-card.style-2 .main-img-wrapper .review-card .card-text span {
  color: #ffffff;
  text-transform: capitalize;
}

/* about section end */
@keyframes moveBox {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(calc(80px - 50%));
  }

  100% {
    transform: translateX(0);
  }
}

.ticks p i {
  padding: 5px;
  background-color: #eee;
  border-radius: 50%;
}

/* last section of indx page  */
/* .img_container {
  width: 100%;
  border-radius: 10px;
  display: grid;
  overflow: hidden;
  height: 450px;
  grid-auto-flow: dense;
  grid-template:
    "1fr 1fr 1fr 1fr 1fr" 33.33vh
    "1fr 1fr 1fr 1fr 1fr" 33.33vh
    "1fr 1fr 1fr 1fr 1fr" 33.33vh;
}

.img_container .box {
  position: relative;
  background: #ccc;
}
.img_container .box.a {
  grid-row: span 2;
}
.img_container .box.b,
.img_container .box.f,
.img_container .box.h,
.img_container .box.j {
  grid-column: span 2;
} */
.img_container .box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

/* 
@media (max-width: 768px) {
  .img_container {
    grid-template:
      "1fr 1fr" 200px
      "1fr 1fr" 200px
      "1fr 1fr" 200px
      "1fr 1fr" 200px
      "1fr 1fr" 200px
      "1fr 1fr" 200px
      "1fr 1fr" 200px;
  }
}
.img_container .box.h {
  grid-column: span 1;
} */
.last_wrapper {
  margin-left: 2.4rem;
}

/* last section of indx page end */

/* about us page  */
.single_item {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.one_item {
  background-color: #2b4775;
  border: 1px solid #0000003c;
  padding: 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  color: #fff;
  max-width: 275px;
  width: 100%;
}

.vl {
  border-left: 1px solid #ffffff52;
  height: 100px;
}

.breadcrumb-item a:hover {
  transition: all ease 1s;
  color: #1669ee;
}

/* about us page end */

.tab .effect {
  position: relative;
  overflow: hidden;
}

.tab {
  box-shadow: 0 0 15px 5px #00000012;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  margin: auto;
}

.effect {
  margin: auto;
  background-color: #fff;
  border: 5px solid #f5f5f5;
}

.tab .effect img {
  position: relative;
  display: block;
  width: 100%;
  opacity: 0.8;
  max-height: 300px;
}

.effect.effect-one .tab-text::after,
.effect.effect-one .tab-text::before {
  position: absolute;
  content: "";
  opacity: 0;
}

.effect.effect-one .tab-text::before {
  top: 52px;
  right: 59px;
  bottom: 50px;
  left: 52px;
  /* border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3); */
  border-top: 2px solid #ffffff9a;
  border-bottom: 2px solid #ffffff9a;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.effect.effect-one .tab-text::after {
  top: 25px;
  right: 105px;
  bottom: 21px;
  left: 96px;
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.effect.effect-one .tab-text::after,
.effect.effect-one .tab-text::before,
.effect.effect-one img,
.effect.effect-one p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.effect.effect-one:hover img {
  opacity: 0.7;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0) scale(1.1, 1.1);
}

.effect.effect-one:hover .tab-text::after,
.effect.effect-one:hover .tab-text::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.effect.effect-one:hover .tab-text::after,
.effect.effect-one:hover h2,
.effect.effect-one:hover img,
.effect.effect-one:hover p {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
  opacity: 1;
}

/* Preloader */
.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close {
  position: fixed;
  z-index: 99999999;
  font-size: 26px;
  border: 1px solid #0008;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
}

.preloader-close:hover {
  background-color: #000;
  color: white;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader img {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
}

.handle-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 200px;
  margin: 0 auto 2rem auto;
  width: 200px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  font-size: 42px;
  line-height: 70px;
  /* text-transform: uppercase; */
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  color: #373372;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #44417baa;
}

.handle-preloader .animation-preloader .spinner {
  width: 11.25rem;
  height: 11.25rem;
  border: 4px solid #f3b8b8b5;
  border-top-color: #373372;
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 567px) {
  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 30px;
    letter-spacing: 10px;
  }
}

.centred {
  text-align: center;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.special_fonts {
  font-family: "DM Sans", sans-serif;
}

figure {
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

/* preloader end */
.footer p a:hover {
  transition: all ease 0.5s;
  color: #fff !important;
  /* color: #3a32a6 !important; */
}

.dropdown-item {
  padding-block: 7px;
  color: #373372;
  font-weight: 500;
}

.dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #00000063 !important;
}

.about-image-card.style-2 .main-img-wrapper .main-img-inner .left-image {
  position: absolute;
  top: 5%;
  right: 5%;
  max-width: 215px;
  overflow: hidden;
  z-index: 1;
}

.about_us .review-card {
  position: absolute;
  left: 50%;
  bottom: -13%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  align-items: center;
  max-width: 200px;
  border-radius: 10px;
  width: 100%;
  background-color: #c32728;
  padding: 0.8rem 10px 0.6rem 1rem;
  margin-top: 1.5rem;
  color: #fff;
  z-index: 2;
}

.bg {
  background-color: #eeeeee41;
}

.contact_box {
  padding: 2rem;
  border-radius: 20px;
}

.form_shadow {
  box-shadow: 0px 2px 6px #ccc;
  padding: 2rem;
  border-radius: 20px;
  max-width: 500px;
  margin: auto;
}

.contact_box .btn-square {
  background-color: #383473 !important;
}

.owl-item .cloned {
  opacity: 0.4;
}

.form-floating .form-control:focus {
  box-shadow: 1px 1px #0000004f;
}

.contact_box span a:hover {
  transition: all ease 1s;
  color: #0000ff !important;
}

.contact_form_wrapper input {
  border: 0.5px solid #0000005e;
}

.contact_form_wrapper textarea {
  border: 0.5px solid #0000005e;
}

.fix_logo {
  position: absolute !important;
  top: 0px;
  height: 120px !important;
  background-color: #fff;
  border-radius: 10px;
}

#main_crousel .breadcrumb-item {
  color: #fff;
}

.tab2 {
  box-shadow: 0 1px 5px #00000030;
}

.tab2 img {
  height: 200px;
}

.tab2:hover {
  box-shadow: 0 1px 5px #000000ae;
  margin-top: -10px;
  transition: all ease 1s;
}

.product_table th {
  font-weight: 500;
  background-color: #eee;
  font-size: 1.2rem;
}

.product_table tr td {
  font-size: 1.1rem;
}

.product_table {
  vertical-align: middle;
}

/* ===============   Sudarshan Page   ==================*/
.product_img {
  position: relative;
}

.product_img .dealer_logo {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 75px;
  max-width: 250px;
}

.product_img img {
  max-width: 100%;
}

.sudarshan_tbl {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  border-collapse: collapse;
  vertical-align: middle;
  background-color: #fff;
}

.sudarshan_tbl table {
  width: 100%;
}

.sudarshan_tbl tr > th,
.sudarshan_tbl tr > td {
  padding: 0.5rem 0.8rem;
}

.sudarshan_tbl tr > th {
  font-size: 1.3rem;
  font-weight: 600;
  /* background-color: #eeea; */
}

.sudarshan_tbl tr > td {
  border: 2px solid #888;
  font-weight: 500;
}

.sudarshan_tbl tr:nth-of-type(even) {
  background-color: #f8f8f8;
}

.sudarshan_tbl tr > td img {
  margin: 0;
  margin-right: 0.4rem;
}

.certificate_sec {
  padding-block: 3rem;
}

.certificate_sec .certificate_wrap {
  position: relative;
  max-height: 351px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px #ddd;
}

.certificate_sec .certificate_wrap:hover img {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}

.certificate_sec .certificate_wrap::before {
  content: "";
  position: absolute;
  inset: 4rem;
  background: #6664;
  opacity: 0;
  transition: 0.5s;
  z-index: 2;
}

.certificate_sec .certificate_wrap:hover:before {
  inset: 0;
  opacity: 1;
}

.certificate_sec .certificate_wrap a {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.certificate_sec .certificate_wrap a i {
  padding: 0.75rem 1rem;
  background: #6668;
  color: #fff;
  opacity: 0;
  border-radius: 10px;
  transition: 1s;
}

.certificate_sec .certificate_wrap:hover a i {
  opacity: 1;
}