:root {
  --primary-color: #0646a5;
  --white-color: #fff;
}
.text-primary {
  color: var(--primary-color) !important;
}
body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  overflow-x: hidden;
}
.btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 10px 20px;
  width: fit-content;
}
.btn:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  box-shadow: rgb(6 70 165) 3px 4px 0px;
}
.swiper-button-next,
.swiper-button-prev {
  background-color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 35px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  color: var(--white-color);
}
header .header-top {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 8px 0;
  display: flex;
  align-items: center;
}
header .header-top a {
  color: var(--white-color);
  text-decoration: none;
}
header .header-top p {
  margin-bottom: 0;
}
header .header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
header .header-nav .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-nav .request {
  text-decoration: none;
  color: #000;
  width: fit-contentP;
  text-transform: capitalize;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 3px;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-left: 30px;
  padding: 10px 20px;
}
header .header-nav .logo {
  width: 200px;
}
header .header-nav ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  justify-content: end;
}
header .header-nav ul li {
  list-style: none;
  position: relative;
  /* width: 100%; */
}
header .header-nav ul li .sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 175px;
  display: none;
  position: absolute;
  background: aliceblue;
  top: 41px;
  z-index: 99;
}
/* header .header-nav ul li .sub-menu::before {
  content: '';
  position: absolute;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
} */
header .header-nav ul li a {
  text-decoration: none;
  color: var(--primary-color);
  padding: 10px;
  position: relative;
  text-align: center;
}
header .header-nav .sub-menu li a {
  background-color: transparent;
}
header .header-nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 20px;
  background-color: var(--primary-color);
  right: 50%;
  transition: 0.3s;
  transform: translateX(50%) scale(0);
  border-radius: 5px;
}
header .header-nav ul li a.active::before,
header .header-nav ul li a:hover::before {
  transform: translateX(50%) scale(1);
}
header .header-nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 20px;
  background-color: var(--primary-color);
  right: 50%;
  transform: translateX(50%) scale(0);
  border-radius: 5px;
}
header .header-nav .contact-details {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}
header .header-nav .contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.swiper-horizontal {
  /* overflow: hidden; */
}
.section {
  padding: 70px 0;
}
.left-content h2 {
  font-size: 28px;
  font-weight: 600;
}
.left-content p {
  font-size: 14px;
}
.left-content ul li {
  list-style: none;
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
}
.left-content ul li::before {
  content: '';
  position: absolute;
  left: -30px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxcmVtIiBoZWlnaHQ9IjFyZW0iIHZpZXdCb3g9IjAgMCAxNiAxNiI+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDY0NmE1IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41Ij48cGF0aCBkPSJNMTQuMjUgOC43NWMtLjUgMi41LTIuMzg1IDQuODU0LTUuMDMgNS4zOEE2LjI1IDYuMjUgMCAwIDEgMy4zNzMgMy43OThDNS4xODcgMS44IDguMjUgMS4yNSAxMC43NSAyLjI1Ii8+PHBhdGggZD0ibTUuNzUgNy43NWwyLjUgMi41bDYtNi41Ii8+PC9nPjwvc3ZnPg==);
  height: 24px;
  width: 24px;
  background-size: contain;
}
/* .left-content .btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 10px 20px;
} */
.btn:focus {
  box-shadow: none;
}
.card-badge {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.card-badge figure img {
  width: 50px;
}
.card-badge h6 {
  text-align: center;
  margin-bottom: 0;
}
.border-primary-end {
  border-right: 1px dashed var(--primary-color);
}
.products-heading {
  padding: 15px 0;
  margin-bottom: 40px;
  text-align: center;
}
.products-heading .container {
  /* padding: 0; */
}
.products-heading h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  margin-bottom: 20px;
}
.products-heading h1::before {
  content: '';
  position: absolute;
  bottom: -9px;
  height: 3px;
  width: 60px;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}
.products-list .card {
  border: 0;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: 0.3s ease;
  overflow: hidden;
}
.products-list .card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.products-list .card img {
  border-radius: 5px;
  height: 300px;
  object-fit: cover;
}
.products-list .card .content {
  padding: 5px;
}
.products-list .card .content h4 {
  font-size: 20px;
  text-decoration: none;
  color: rgb(33, 37, 41);
}
.products-list .card .content p {
  font-size: 14px;
  color: rgb(33, 37, 41);
}
.about-img {
  position: relative;
}
.about-img .badge {
  position: absolute;
  left: 0px;
  top: 8px;
}
.about-img .badge img {
  width: 100px;
}

.about .column {
  text-align: center;
  padding-bottom: 50px;
  border-right: 1px dashed var(--primary-color);
  padding: 0;
}
.about .column h1 {
  color: var(--primary-color);
  font-weight: 600;
}
.about .column h3 {
  font-size: 14px;
}

.about .column:last-child {
  border-right: 0px solid black;
}

.about .counter {
  animation-duration: 1s;
  animation-delay: 0s;
}

.about i {
  font-size: 20px !important;
}

@media (max-width: 991px) {
  .about .col-md-4 {
    border-right: 0px dashed black;
    border-bottom: 1px dashed black;
    width: 50%;
    margin: auto auto;
  }

  .about .col-md-4:last-child {
    border-bottom: 0px dashed black;
  }
}

.why-choose-us .card-main {
  background-color: #efefef;
  padding: 15px;
  margin-bottom: 15px;
  height: 100%;
  border-radius: 10px;
}

.why-choose-us .choose-card {
  position: relative;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  padding: 10px;
  height: 100%;
  transition: background 0.3 eae;
  border-radius: 5px;
}
.why-choose-us .choose-card:hover {
  background-color: #efefef;
}

.why-choose-us .products-heading {
  text-align: start;
}
.why-choose-us .products-heading h1::before {
  left: 0;
  transform: translate(0);
}
.why-choose-us .choose-card img {
  width: 60px !important;
  margin-bottom: 15px;
}
.gallery-container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.gallery-container .content .heading {
  max-width: 700px;
}
.gallery-container .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.gallery-container .gallery img {
  width: 100%;
}
.gallery-container .products-heading {
  margin: 0;
  max-width: 800px;
  text-align: start;
}
.gallery-container .products-heading h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  margin-bottom: 20px;
}
.gallery-container .products-heading h1::before {
  left: 0;
  transform: translate(0);
}
.solutions .solution-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
}
.solutions .solution-card img {
  width: 100%;
  height: 100%;
}
.solutions .solution-card .overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 20px;
  height: 100%;
  width: 100%;
  background-color: #0646a582;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateX(357px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.solutions .solution-card:hover .overlay-text {
  opacity: 1;
  transform: translateX(0);
}

footer {
  background-color: #f7f7f7;
  padding: 70px 0px 25px !important;
}
footer img {
  width: 200px;
}
footer ul {
  padding: 0;
  border: 0;
}
footer ul li {
  list-style: none;
}
footer .contact-link h5,
footer .link h5 {
  padding: 19px 0;
}
footer ul li .footer-links {
  text-decoration: none;
  padding: 5px 0;
  display: flex;
  position: relative;
  color: #000;
}
footer ul li .footer-links::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 20px;
  background-color: var(--primary-color);
  left: -9px;
  transition: 0.3s;
  transform: translateX(50%) scale(0);
  border-radius: 5px;
}
footer ul li .footer-links:hover::before {
  transform: translateX(50%) scale(1);
}
footer .contact-link ul li {
  padding: 5px;
  display: flex;
  gap: 8px;
}
footer .contact-link ul li svg {
  margin-top: 3px;
}
footer .contact-link ul li a {
  text-decoration: none;
  color: rgb(33, 37, 41);
}
footer .copy-wrap {
  border-top: 1px solid #dbdada;
  padding-top: 20px;
}
footer .copy-wrap p {
  text-align: center;
  margin-bottom: 0;
}
#thumbnail-slider .splide__arrow {
  display: none;
}
.product-detail .content img {
  width: 100px;
}
.product-detail .content ul li {
  position: relative;
  list-style: none;
  margin-bottom: 10px;
}
.product-detail .content ul li::before {
  content: '';
  position: absolute;
  left: -30px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxcmVtIiBoZWlnaHQ9IjFyZW0iIHZpZXdCb3g9IjAgMCAxNiAxNiI+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDY0NmE1IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41Ij48cGF0aCBkPSJNMTQuMjUgOC43NWMtLjUgMi41LTIuMzg1IDQuODU0LTUuMDMgNS4zOEE2LjI1IDYuMjUgMCAwIDEgMy4zNzMgMy43OThDNS4xODcgMS44IDguMjUgMS4yNSAxMC43NSAyLjI1Ii8+PHBhdGggZD0ibTUuNzUgNy43NWwyLjUgMi41bDYtNi41Ii8+PC9nPjwvc3ZnPg==);
  height: 24px;
  width: 24px;
  background-size: contain;
}
.discription {
  background-color: #f7f7f7;
  padding: 30px;
}
.discription table {
  width: 100%;
}
.discription table tr th {
  border: 1px solid #ccc;
  padding: 10px;
}
.discription table tr td {
  border: 1px solid #ccc;
  padding: 10px;
}
.white-t {
  background-color: #fff;
}
.discription p {
  font-size: 15px;
  margin: 20px 0px;
  font-style: italic;
}
.discription h6 {
  font-size: 20px;
  margin-bottom: 20px;
}
.spec-wrap {
  padding: 20px 0px 0px;
}
.spec-wrap ul li {
  position: relative;
  list-style: none;
  margin-bottom: 15px;
}
.spec-wrap ul li::before {
  content: '';
  position: absolute;
  left: -27px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxcmVtIiBoZWlnaHQ9IjFyZW0iIHZpZXdCb3g9IjAgMCAxNiAxNiI+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDY0NmE1IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41Ij48cGF0aCBkPSJNMTQuMjUgOC43NWMtLjUgMi41LTIuMzg1IDQuODU0LTUuMDMgNS4zOEE2LjI1IDYuMjUgMCAwIDEgMy4zNzMgMy43OThDNS4xODcgMS44IDguMjUgMS4yNSAxMC43NSAyLjI1Ii8+PHBhdGggZD0ibTUuNzUgNy43NWwyLjUgMi41bDYtNi41Ii8+PC9nPjwvc3ZnPg==);
  height: 20px;
  width: 20px;
  background-size: contain;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #0646a5;
  border-radius: 5px;
}

.category .category-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #edecec;
}
.category .category-box img {
  width: 100%;
  height: 100%;
}
.category .category-box .overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white-color);
  font-size: 20px;
  height: 100%;
  width: 100%;
  background-color: #0646a582;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(357px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.category .category-box:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}
.category .category-box figure {
  margin: 0;
}
.category .category-box figcaption {
  background-color: #f7f7f7;
  height: 100%;
}
.category .category-box figcaption h3 {
  font-size: 18px;
  margin: 20px;
  color: #000;
  text-align: center;
  text-decoration: none;
}
.features {
  background-color: var(--primary-color);
}
.features h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--white-color);
  margin: 0;
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}
.features h1::before {
  content: '';
  position: absolute;
  bottom: -9px;
  height: 3px;
  width: 60px;
  background-color: var(--white-color);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}
.feature-box {
  display: flex;
  padding-right: 40px;
  margin-bottom: 50px;
  gap: 20px;
}
.feature-box .icon {
  width: 80px;
}
.feature-box .icon img {
  width: 100%;
}
.feature-box h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--white-color);
  margin: 0;
  position: relative;
  margin-bottom: 10px;
}
.feature-box p {
  font-size: 15px;
  color: var(--white-color);
  margin-bottom: 0;
}

.team {
  background-color: #efefef;
}
.team .team-box img {
  width: 100%;
}
.team .team-box figcaption {
  text-align: center;
}
.team .team-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  margin-bottom: 5px;
  text-align: center;
}
.team .team-box span {
  font-size: 16px;
  font-weight: 400;
  color: #212529;
  margin: 0;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.team h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}
.team h1::before {
  content: '';
  position: absolute;
  bottom: -9px;
  height: 3px;
  width: 60px;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.contact h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.contact h1::before {
  content: '';
  position: absolute;
  bottom: -9px;
  height: 3px;
  width: 60px;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}
.contact p {
  font-size: 15px;
  color: #212529;
  text-align: center;
  margin-bottom: 50px;
}
.contact .wrap-bx {
  text-align: left;
  min-height: 230px;
  background-color: var(--primary-color);
  padding: 35px;
}
.contact i {
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border: 1px solid #fff;
  border-radius: 50px;
  float: left;
  font-size: 25px;
}
.contact .right-bx {
  width: auto;
  display: table;
  color: #fff;
  text-align: left;
  float: left;
  padding-left: 15px;
}
.contact .wrap-bx h3 {
  color: #fff;
  font-size: 26px;
  text-align: center;
  margin: 10px 0 20px;
  text-align: left;
}
.contact .wrap-bx p {
  color: #fff;
  text-align: left;
  margin: 0;
}

.contact-form-wrap {
  background-color: #efefef;
}
.contact-form-wrap .container {
  width: 100%;
  max-width: 991px;
}
.contact-form-wrap h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}
.contact-form-wrap h1::before {
  content: '';
  position: absolute;
  bottom: -9px;
  height: 3px;
  width: 60px;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.form-box .details-field {
  padding-left: 15px;
  padding-right: 25px;
  vertical-align: middle;
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
.form-box .message-field {
  padding-left: 15px;
  padding-right: 25px;
  padding-top: 10px;
  vertical-align: middle;
  width: 100%;
  height: 100px;
  margin-bottom: 8px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
.form-box-img img {
  border-radius: 5px;
}
.form-box {
  padding-left: 30px;
}
.breadcrumb {
  align-items: center;
}
.swiper-pagination-bullet {
  width: 35px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--primary-color);
}
