@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
html {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font: normal normal normal 16px/24px League Spartan;
  letter-spacing: 0px;
  color: #717171;
  opacity: 1;
  padding-right: 0 !important;
}

.btn {
  font: normal normal 600 14px/22px Inter;
  letter-spacing: 0px;
  color: #ffffff;
  border-radius: 10px;
  min-width: 180px;
  padding: 12px 20px;
  text-align: left;
  box-shadow: none !important;
  transition: all ease 0.3s;
}
.btn .fa {
  text-align: right;
  font-weight: 600;
  font-size: 17px;
}

.btn-primary {
  background: #2366a0 0% 0% no-repeat padding-box;
  border: 0;
  color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #0d2c43 0% 0% no-repeat padding-box !important;
}

.btn-link {
  color: #0a5fa8;
  text-align: left;
  border: 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0 8px;
}
.btn-link::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 1px;
  background-color: #0a5fa8;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.btn-link:focus, .btn-link:hover, .btn-link:active {
  color: #0a5fa8 !important;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background: #0a5fa8 0% 0% no-repeat padding-box;
  border: 0.5px solid #0a5fa8;
  text-shadow: 0 0.5px 0 transparent;
}

a {
  text-decoration: none !important;
}

.heading1 {
  font: normal normal 600 42px/52px League Spartan;
  color: #0a5fa8;
}

.heading2 {
  font: normal normal normal 30px/36px League Spartan;
  color: #0a5fa8;
  letter-spacing: -0.46px;
}

.heading3 {
  font: normal normal bold 22px/30px League Spartan;
  color: #717171;
}

.sub-heading {
  font: normal normal 500 14px/20px League Spartan;
  letter-spacing: 2.1px;
  color: #425364;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 10px;
}

.form-control {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 0.5px solid rgba(112, 112, 112, 0.768627451);
  border-radius: 8px;
  font: normal normal normal 14px/18px League Spartan;
  letter-spacing: 0.72px;
  color: #717171;
  padding: 10px 12px;
  box-shadow: none !important;
}
.form-control::-moz-placeholder {
  color: #717171;
}
.form-control::placeholder {
  color: #717171;
}
.form-control:focus, .form-control:active {
  color: #717171;
}

.modal {
  --bs-modal-border-radius: 0;
  padding: 0 !important;
  background: rgba(0, 0, 0, 0.6392156863) 0% 0% no-repeat padding-box;
  overflow: scroll;
}
.modal::-webkit-scrollbar {
  display: none;
}
.modal .modal-dialog {
  z-index: 99999;
  width: 100%;
  margin: auto;
}
.modal .modal-dialog .btn-close {
  position: absolute;
  background-image: url(../img/close-btn.webp);
  font-size: 20px;
  opacity: 1;
  z-index: 1;
  box-shadow: none !important;
  right: -35px;
  top: 0;
  filter: invert(1);
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.whatsapp {
  position: fixed;
  right: 15px;
  bottom: 40px;
  z-index: 3;
}
.whatsapp .whatsapp-icon {
  width: 70px;
  height: 65px;
  text-align: center;
  border-radius: 15px;
  background-color: #fff;
  padding: 3px;
  display: grid;
  place-items: center;
  transition: all ease 0.4s;
}
.whatsapp .whatsapp-icon .fa {
  font-size: 28px;
  transition: all ease 0.4s;
}
.whatsapp .whatsapp-icon p {
  font: normal normal bold 7px/11px Inter;
  margin-bottom: 3px;
  transition: all ease 0.4s;
}
.whatsapp .whatsapp-icon:hover .fa {
  color: #fff;
}
.whatsapp .whatsapp-icon:hover p {
  color: #fff;
}
.whatsapp .whatsapp-green {
  border: 1px solid #9bf198;
}
.whatsapp .whatsapp-green .fa {
  color: #9bf198;
}
.whatsapp .whatsapp-green p {
  color: #9bf198;
}
.whatsapp .whatsapp-green:hover {
  background-color: #9bf198;
}
.whatsapp .whatsapp-blue {
  border: 1px solid #0a5fa8;
}
.whatsapp .whatsapp-blue .fa {
  color: #0a5fa8;
}
.whatsapp .whatsapp-blue p {
  color: #0a5fa8;
}
.whatsapp .whatsapp-blue:hover {
  background-color: #0a5fa8;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none !important;
}

.owl-theme .owl-nav {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
}
.owl-theme .owl-nav button {
  position: static;
  margin: 0 5px;
  background-color: transparent !important;
  opacity: 1 !important;
}
.owl-theme .owl-nav button img {
  width: 20px;
}

.fixed {
  background-color: #fff;
  position: fixed !important;
  top: -99px;
  width: 100%;
  left: 0;
  z-index: 999;
  transform: translate(0, 99px) scale(1);
  transition: 0.9s !important;
}

header .navbar {
  padding: 10px 0px;
  background: #ffffff 0% 0% no-repeat padding-box;
  z-index: 9;
}
header .navbar .social-link {
  display: flex;
  justify-content: end;
}
header .navbar .social-link li {
  margin-left: 15px;
}
header .navbar .social-link li img {
  width: 28px;
}
header .navbar .navbar-nav {
  align-items: center;
}
header .navbar .navbar-nav .nav-item {
  margin: 0px 20px;
}
header .navbar .navbar-nav .nav-item .nav-link {
  font: normal normal 500 14px/24px League Spartan;
  letter-spacing: 0.2px;
  color: #0a5fa8;
  text-transform: uppercase;
  opacity: 0.8;
  padding: 12px 0;
  transition: all ease 0.4s;
}
header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #0d2c43;
}
header .navbar .navbar-nav .nav-item .nav-link .fa {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  top: 1px;
}
header .navbar .has-dropdown {
  position: relative;
  z-index: 0;
}
header .navbar .has-dropdown .drop-menu {
  position: absolute;
  list-style: none;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1019607843);
  border: none;
  width: 225px;
  top: 45px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  z-index: 999;
  padding: 12px 0;
}
header .navbar .has-dropdown .drop-menu::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #0a5fa8;
  left: 0;
  top: 0;
  z-index: 1;
}
header .navbar .has-dropdown .drop-menu .nav-item {
  margin: 0;
}
header .navbar .has-dropdown .drop-menu .nav-item .nav-link {
  font: normal normal normal 14px/18px League Spartan;
  letter-spacing: 0.18px;
  color: #717171;
  padding: 4px 15px;
  text-transform: capitalize;
  transition: all ease 0.4s;
}
header .navbar .has-dropdown .drop-menu .nav-item .nav-link:hover {
  color: #0d2c43;
}
header .navbar .has-dropdown:hover .drop-menu {
  opacity: 1;
  visibility: visible;
}

.header-search-form input:focus-visible {
  outline: none !important;
  box-shadow: none;
}

@media (min-width: 992px) {
  .navbar-nav {
    flex-direction: row;
  }
}
footer {
  background: #145fa0 0% 0% no-repeat padding-box;
}
footer .footer-title {
  font: normal normal normal 17px/25px League Spartan;
  letter-spacing: 1.32px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 25px;
}
footer .footer-top {
  padding: 60px 0 40px 0;
}
footer .footer-top .footer-logo ul li p {
  font: normal normal normal 15px/22px League Spartan;
  letter-spacing: 0px;
  color: #ffffff;
  margin-bottom: 3px;
}
footer .footer-top .footer-logo ul li p a {
  color: #fff;
  text-transform: lowercase;
}
footer .footer-top .footer-links ul li a {
  font: normal normal 500 15px/22px League Spartan;
  letter-spacing: 0px;
  color: #ffffff;
  margin-bottom: 0;
}
footer .footer-top .footer-links .link1 {
  -moz-column-count: 2;
       column-count: 2;
}
footer .footer-bottom .copyright {
  padding: 8px 0 15px 0;
}
footer .footer-bottom .copyright p,
footer .footer-bottom .copyright a {
  font: normal normal normal 12px/18px League Spartan;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0;
}

.home-contact {
  padding: 60px 0;
}

.g-recaptcha {
  scale: 0.7;
  transform-origin: 0 0;
}

.banner {
  padding-top: 30px;
}
.banner .banner-text {
  position: relative;
  top: 46px;
}
.banner .banner-text .heading1 {
  font-size: 52px;
  line-height: 58px;
}
.banner .banner-text p {
  font-size: 18px;
}
.banner .banner-text .btn-primary {
  background-color: #6abef6;
}

.home1 {
  background: transparent linear-gradient(175deg, #ffffff 0%, #f0f2f4 100%) 0% 0% no-repeat padding-box;
  padding: 50px 0;
}
.home1 .home1-text p {
  font: normal normal 500 13px/20px Inter;
  letter-spacing: 0px;
  color: #677582;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.home1 .home1-line {
  position: relative;
  z-index: 0;
}
.home1 .home1-line::after {
  content: "";
  position: absolute;
  background-color: #2366a0;
  width: 1px;
  height: 85%;
  right: 20px;
  top: 0;
}

.home2 {
  position: relative;
  z-index: 0;
  padding: 60px 0;
}
.home2 .home2-bg {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  height: 100%;
}

.home3 {
  background-image: url(../img/home3-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  padding: 60px 0 120px 0;
}
.home3 .sub-heading {
  opacity: 1;
}
.home3 .home3-box {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 8px rgba(23, 37, 93, 0.0823529412);
  border-radius: 8px;
  padding: 28px 15px 15px 15px;
  height: 120px;
  display: flex;
  align-items: center;
}
.home3 .home3-box .sub-title {
  font: normal normal normal 15px/18px League Spartan;
  letter-spacing: 0px;
  color: #0a5fa8;
  text-transform: uppercase;
  margin-bottom: 3px;
  position: absolute;
  top: 10px;
}
.home3 .home3-box ul {
  display: flex;
  align-items: center;
}
.home3 .home3-box ul li:nth-child(1) {
  margin-right: 10px;
}
.home3 .home3-box ul li img {
  width: 42px;
}
.home3 .home3-box ul li .home3-title {
  font: normal normal 500 15px/20px League Spartan;
  letter-spacing: 0px;
  color: #0a5fa8;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
  z-index: 0;
  top: 18px;
  transition: all ease 0.4s;
}
.home3 .home3-box ul li .fa {
  font-size: 17px;
  font-weight: 500;
  color: #0a5fa8;
  opacity: 0.6;
  position: relative;
  left: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}
.home3 .home3-box:hover ul li .home3-title {
  top: 3px;
}
.home3 .home3-box:hover ul li .fa {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.home3 .owl-theme .owl-nav {
  top: -76px;
  left: 130px;
  width: 90px;
}
.home3 .owl-theme .owl-nav button {
  position: static;
}
.home3 .owl-theme .owl-nav button img {
  filter: brightness(10);
}

.home4 {
  padding: 60px 0;
}
.home4 .owl-theme .owl-nav {
  top: -60px;
  right: 0;
  width: 90px;
  left: inherit;
}

.feature-box {
  cursor: pointer;
}
.feature-box .feature-text {
  padding: 0 15px;
}
.feature-box .feature-text .feature-title {
  font: normal normal 500 19px/28px League Spartan;
  letter-spacing: 0px;
  color: #717171;
  text-transform: capitalize;
  margin-bottom: 0;
}
.feature-box .feature-img {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 40px;
  margin-bottom: 20px;
}
.feature-box .feature-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  background: rgba(35, 102, 160, 0.7) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  border: 1px solid #707070;
  border-radius: 40px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}
.feature-box .feature-img .btn-hide {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}
.feature-box .feature-img .btn-hide .fa {
  font-size: 20px;
  color: #fff;
}
.feature-box .feature-img img {
  transition: all ease 0.4s;
}
.feature-box .design-img img {
  scale: 1.1;
  translate: -15px 0;
}
.feature-box .printing-img img {
  transform-origin: right;
}
.feature-box .machine-img img {
  scale: 1.1;
  translate: -4px -6px;
}
.feature-box .system-img img {
  scale: 1.1;
  translate: -15px 0;
}
.feature-box .laser-img img {
  scale: 1.1;
  translate: -4px 0;
}
.feature-box .metal-img img {
  translate: 0 0;
}
.feature-box:hover .feature-img::before {
  opacity: 1;
  visibility: visible;
}
.feature-box:hover .feature-img .btn-hide {
  opacity: 1;
  visibility: visible;
}
.feature-box:hover .feature-img img {
  transform: scale(1.05);
}
.feature-box:hover .design-img img {
  translate: 0 0;
}
.feature-box:hover .printing-img img {
  scale: 1.05 1;
}
.feature-box:hover .machine-img img {
  translate: 0 0;
}
.feature-box:hover .system-img img {
  scale: 1.12;
  translate: 0 0;
}
.feature-box:hover .production-img img {
  scale: 1.02;
}
.feature-box:hover .storage-img img {
  scale: 1.05;
}
.feature-box:hover .laser-img img {
  translate: 0 0;
}
.feature-box:hover .metal-img img {
  translate: -5px -5px;
  scale: 1.04;
}

.home5 {
  background: transparent linear-gradient(173deg, #86a0b4 0%, #68b1db 100%) 0% 0% no-repeat padding-box;
  padding: 60px 0;
}
.home5 .category-box .category-img {
  background-color: #fff;
  height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.home5 .category-box .category-img img {
  width: auto;
  scale: 1;
  transition: all ease 0.4s;
}
.home5 .category-box .category-text h4 {
  font: normal normal 500 20px/26px League Spartan;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: capitalize;
}
.home5 .category-box:hover .category-img img {
  scale: 1.06;
}
.home5 .owl-theme .owl-nav {
  top: -185px;
  right: 0;
  width: 65px;
  left: inherit;
}
.home5 .owl-theme .owl-nav button img {
  filter: brightness(10);
}

.page-text .breadcumb {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-text .breadcumb li {
  font: normal normal 500 12px/18px League Spartan;
  letter-spacing: 2.24px;
  color: #425364;
  text-transform: uppercase;
  margin: 0 3px;
}
.page-text .breadcumb li a {
  color: #425364;
}
.page-text .heading1 {
  font-size: 55px;
  line-height: 64px;
}

.gallery {
  padding: 40px 0 60px 0;
}
.gallery .filter-btns button {
  font: normal normal normal 16px/20px League Spartan;
  text-transform: capitalize;
  color: #707070;
  opacity: 0.6;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  margin: 8px 18px;
}
.gallery .filter-btns button.active {
  border-bottom: 1px solid #707070;
}

.nav-pills {
  justify-content: end;
}
.nav-pills .nav-item {
  margin: 0 18px;
}
.nav-pills .nav-item .nav-link {
  font: normal normal normal 16px/16px League Spartan;
  text-transform: capitalize;
  color: #707070;
  opacity: 0.6;
  padding: 0;
  border-radius: 0;
}
.nav-pills .nav-item .active {
  color: #707070;
  opacity: 1;
  background-color: transparent;
  border-bottom: 1px solid #707070;
}

.product {
  padding: 40px 0 60px 0;
}

.sidebar h5 {
  font: normal normal 500 18px/26px League Spartan;
  letter-spacing: 0.24px;
  color: #717171;
  text-transform: uppercase;
  opacity: 1;
}
.sidebar .main-all {
  font: normal normal 600 15px/24px League Spartan;
  color: #717171;
  text-transform: capitalize;
}
.sidebar .main-all.active {
  color: #0a5fa8;
}
.sidebar .main-all:hover {
  color: #0a5fa8;
}
.sidebar .accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.631372549);
  border-radius: 0;
  margin-bottom: 10px;
}
.sidebar .accordion .accordion-item .accordion-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.sidebar .accordion .accordion-item .accordion-header .main-category {
  font: normal normal 600 15px/24px League Spartan;
  color: #717171;
  text-transform: capitalize;
}
.sidebar .accordion .accordion-item .accordion-header .main-category.active {
  color: #0a5fa8;
}
.sidebar .accordion .accordion-item .accordion-header .main-category:hover {
  color: #0a5fa8;
}
.sidebar .accordion .accordion-item .accordion-header button {
  font: normal normal 600 15px/24px League Spartan;
  color: #717171;
  text-transform: capitalize;
  padding: 0 0 7px;
  text-align: left;
  border-radius: 0 !important;
  margin-bottom: 10px;
  width: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.sidebar .accordion .accordion-item .accordion-header button:focus {
  outline: none;
  box-shadow: none;
  border-color: #0a5fa8;
}
.sidebar .accordion .accordion-item .accordion-header button::after {
  content: "\f107";
  position: absolute;
  transform: rotate(0) !important;
  background: none !important;
  left: 0;
  top: 0;
  font-size: 20px;
  font-weight: 500;
  color: #717171;
  display: grid;
  place-items: center;
  font-family: "FontAwesome";
  width: 100%;
  height: 25px;
}
.sidebar .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg) !important;
}
.sidebar .accordion .accordion-item ul {
  padding-left: 20px;
}
.sidebar .accordion .accordion-item ul li a {
  font: normal normal normal 15px/20px League Spartan;
  color: #717171;
  letter-spacing: 0.22px;
  text-transform: capitalize;
  opacity: 1;
}
.sidebar .accordion .accordion-item ul li a:hover {
  color: #0a5fa8;
}

.product-box .product-img {
  background: #f5f5f5 0% 0% no-repeat padding-box;
  overflow: hidden;
  padding: 0px;
}
.product-box .product-img img {
  scale: 1;
  transition: all ease 0.4s;
}
.product-box .product-box-content {
  position: relative;
  bottom: 0;
  width: 100%;
  transition: 0.4s ease all;
}
.product-box .product-box-content .pro-name {
  font: normal normal 500 18px/24px League Spartan;
  letter-spacing: 0px;
  color: #717171;
}
.product-box:hover .product-box-content {
  translate: 0% 10px;
}
.product-box:hover .product-img {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 24px rgba(75, 113, 157, 0.0784313725);
}
.product-box:hover .product-img img {
  scale: 1.05;
}

.pagination .page-item {
  margin: 0px 3px;
}
.pagination .page-item a {
  display: grid;
  place-items: center;
  border: 0;
  box-shadow: none;
  background-color: #fff;
  font: normal normal normal 14px/21px Inter;
  letter-spacing: 7.2px;
  color: #717171;
  text-transform: capitalize;
  padding: 4px 3px;
  border-radius: 0 !important;
  margin: 0 !important;
}
.pagination .page-item a .fa {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.7;
}
.pagination .page-item .active {
  font-weight: 600;
}

.shop {
  padding: 40px 0 60px 0;
}

.shop-box .shop-img {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: #f5f5f5 0% 0% no-repeat padding-box;
  margin-bottom: 8px;
}
.shop-box .shop-img::before {
  content: "";
  position: absolute;
  background: rgba(201, 214, 226, 0.6) 0% 0% no-repeat padding-box;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}
.shop-box .shop-img img {
  scale: 1;
  transition: all ease 0.4s;
}
.shop-box .shop-box-text .pro-name {
  font: normal normal 500 18px/24px League Spartan;
  letter-spacing: 0px;
  color: #717171;
  text-transform: capitalize;
  margin-bottom: 3px;
}
.shop-box .shop-box-text .price {
  font: normal normal normal 15px/20px Inter;
  letter-spacing: 1.6px;
  color: #868686;
  text-transform: uppercase;
  margin-bottom: 0;
}
.shop-box:hover .shop-img::before {
  opacity: 1;
  visibility: visible;
}
.shop-box:hover .shop-img img {
  scale: 1.05;
}

.shop-detail {
  padding: 40px 0 60px 0px;
}
.shop-detail .shop-inner .shop-inner-content .heading2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 5px;
}
.shop-detail .shop-inner .shop-inner-content .price {
  font: normal normal normal 16px/24px Inter;
  color: #868686;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.shop-detail .shop-inner ul li {
  padding-left: 8px;
}
.shop-detail .shop-inner ul li::marker {
  color: #0a5fa8;
}
.shop-detail .shop-inner .count-list .qty {
  font: normal normal 600 14px/24px Inter;
  letter-spacing: 0.18px;
  color: #000000;
  text-transform: capitalize;
}
.shop-detail .shop-inner .count-list .counter {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 0.400000006px solid rgba(33, 33, 33, 0.6588235294);
  border-radius: 4px;
  padding: 6px 20px;
}
.shop-detail .shop-inner .count-list .counter li a {
  font: normal normal normal 18px/28px Inter;
  letter-spacing: 0.18px;
  color: #000;
  opacity: 0.8;
}
.shop-detail .shop-inner .count-list .counter li .count-number {
  font: normal normal normal 15px/28px Inter;
  letter-spacing: 0.18px;
  color: #000;
  opacity: 0.8;
}
.shop-detail .carousel .carousel-indicators {
  position: static;
  margin-left: 0;
  margin-right: 0;
  margin-top: 15px;
  justify-content: start;
  overflow: scroll;
}
.shop-detail .carousel .carousel-indicators::-webkit-scrollbar {
  display: none;
}
.shop-detail .carousel .carousel-indicators button {
  width: 85px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  margin-right: 10px;
  border: 1px solid transparent;
}
.shop-detail .carousel .carousel-indicators .active {
  border: 1px solid #0a5fa8;
}
.shop-detail .carousel .carousel-inner {
  width: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
}
.shop-detail .carousel .carousel-inner .carousel-item {
  text-align: center;
}
.shop-detail .carousel .carousel-inner .carousel-item img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
}
.shop-detail .carousel button {
  width: 25px;
  height: 25px;
  top: inherit;
  bottom: 16px;
  opacity: 1;
}
.shop-detail .carousel button .fa {
  color: #211c1c;
  font-size: 20px;
  opacity: 0.4;
  font-weight: 600;
}
.shop-detail .carousel .carousel-control-prev {
  left: -30px;
}
.shop-detail .carousel .carousel-control-next {
  right: -30px;
}

.related-product {
  background: transparent linear-gradient(11deg, #94b1c6 0%, #5ab2e2 100%) 0% 0% no-repeat padding-box;
  padding: 50px 0;
}
.related-product .pro-name,
.related-product .price {
  color: #fff !important;
}
.related-product .owl-theme .owl-nav {
  top: -70px;
  width: 65px;
  right: 0;
  left: inherit;
}
.related-product .owl-theme .owl-nav button img {
  filter: brightness(10);
}

.contact {
  padding: 40px 0 60px 0;
}
.contact .address-text {
  position: relative;
  z-index: 0;
}
.contact .address-text ul li {
  display: flex;
  align-items: self-start;
  margin-bottom: 20px;
}
.contact .address-text ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.contact .address-text ul li .icon-img {
  margin-right: 8px;
  width: 30px;
  height: 30px;
}
.contact .address-text ul li p {
  font: normal normal normal 16px/24px League Spartan;
  color: #717171;
  margin-bottom: 0;
}
.contact .address-text ul li p a {
  color: #717171;
}
.contact .home-contact-text {
  padding-left: 100px;
  position: relative;
  z-index: 0;
}
.contact .home-contact-text::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 90%;
  background-color: rgba(113, 113, 113, 0.5490196078);
  left: 0;
  top: 10px;
  z-index: 1;
}

.about1 {
  padding: 40px 0 20px 0;
  position: relative;
  z-index: 0;
}
.about1 .about1-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 600px;
}
.about1 .about1-text .about1-title {
  font: normal normal normal 20px/28px League Spartan;
  letter-spacing: -0.28px;
  color: #0a5fa8;
}

.about2 {
  background: transparent linear-gradient(195deg, #69b2db 0%, #9ba9b2 100%) 0% 0% no-repeat padding-box;
}
.about2 .home1-text p {
  color: #fff;
}

.feature-modal .modal .modal-dialog {
  max-width: 32%;
}
.feature-modal .modal .modal-dialog .modal-content {
  border-radius: 40px;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body {
  padding: 0px;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-inner {
  border-radius: 40px;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-item .carousel-caption {
  position: relative;
  z-index: 0;
  left: 0;
  bottom: 0;
  text-align: left;
  padding: 15px 70px 15px 20px;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-item .carousel-caption .heading2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 0;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-item .carousel-caption .modal-para {
  color: #717171;
  line-height: 22px;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-item .carousel-caption ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-item .carousel-caption ul li .material-title {
  font: normal normal 500 15px/28px Inter;
  color: #0a5fa8;
  margin-bottom: 0;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-item .carousel-caption ul li .steel-title {
  font: normal normal normal 17px/24px League Spartan;
  letter-spacing: -0.22px;
  color: #717171;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  top: 50%;
  translate: 0 -50%;
  opacity: 1;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel button .fa {
  font-size: 26px;
  color: #fff;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-prev {
  left: -10%;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-next {
  right: -10%;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-indicators button {
  display: none !important;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .content-btn {
  position: absolute;
  right: 8px;
  bottom: 20%;
  display: flex;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .content-btn .next-btn {
  color: #717171;
  opacity: 0.8;
  cursor: pointer;
  font-size: 16px;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .content-btn .count-number {
  font: normal normal 500 17px/24px League Spartan;
  color: #717171;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin: 0 3px;
  opacity: 1;
}
.feature-modal .modal .modal-dialog .modal-content .modal-body .content-btn .count-number .mx-2 {
  line-height: 8px;
  height: 3px;
}

.bizsafe3 {
  background: #fff;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px #ddd;
  border-radius: 50%;
}

.enquire-modal .modal .modal-dialog {
  max-width: 45%;
}
.enquire-modal .modal .modal-dialog .modal-content {
  border-radius: 20px;
}
.enquire-modal .modal .modal-dialog .modal-content .modal-body .enquire-text {
  background: #ffffff 0% 0% no-repeat padding-box;
  padding: 20px 35px;
  border-radius: 20px;
}

.design1 {
  padding: 40px 0 60px 0;
}
.design1 .design-text .heading2 {
  line-height: 26px;
}
.design1 .design-text .industries-text {
  padding-top: 20px;
  border-top: 1px solid rgba(112, 112, 112, 0.6705882353);
}
.design1 .design-text .industries-text .industries-title {
  font: normal normal 500 14px/18px League Spartan;
  letter-spacing: 2.52px;
  color: #425364;
  text-transform: uppercase;
}
.design1 .design-text .industries-text .industries-box {
  background: #7b92a7 0% 0% no-repeat padding-box;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
}
.design1 .design-text .industries-text .industries-box img {
  margin-bottom: 10px;
}
.design1 .design-text .industries-text .industries-box p {
  font: normal normal 500 11px/15px League Spartan;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0;
}

.bizsafe3 {
  background: #fff;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px #ddd;
  border-radius: 50%;
}

.design2 {
  background: transparent linear-gradient(2deg, #ffffff 0%, #f0f2f4 100%) 0% 0% no-repeat padding-box;
  padding: 60px 0;
}
.design2 .owl-theme .owl-nav {
  top: -80px;
}

.design3 {
  background-image: none;
  background: transparent linear-gradient(191deg, #69b2db 0%, #9ba9b2 100%) 0% 0% no-repeat padding-box;
  padding: 60px 0;
}
.design3 .owl-theme .owl-nav {
  left: inherit;
  right: 0;
  top: -70px;
}

.animated {
  animation-duration: 0 ms !important;
  animation-fill-mode: both !important;
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.help-block {
  display: inline-block;
  font-size: 13px;
  background: #ff7171;
  color: white;
  padding: 2px 10px;
  margin-top: 8px;
  position: relative;
  border-radius: 3px;
}
.help-block::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #ff7171;
}

.terms {
  padding: 40px 0px;
}
.terms p {
  font: normal normal 500 14px/24px Inter;
  letter-spacing: 0px;
  color: #717171;
}
.terms li {
  font: normal normal 500 14px/24px Inter;
  letter-spacing: 0px;
  color: #717171;
}
.terms .sidebar a {
  display: block;
  font: normal normal 500 13px/20px Inter;
  color: #2c2c2c;
  padding-bottom: 15px;
}
.terms .sidebar a:hover {
  font: normal normal bold 16px/20px Inter;
}
.terms .sidebar a .active {
  font: normal normal bold 16px/20px Inter;
}
.terms .date {
  font-weight: 600;
  font-size: 18px;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #0a5fa8;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: #0a5fa8;
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0a5fa8;
}

@media only screen and (max-width: 1199px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 96%;
    width: 100%;
  }
  header .navbar .navbar-toggler .fa {
    color: #717171;
  }
  .home5 .owl-theme .owl-nav {
    top: -200px;
  }
  .shop-detail1 .nav-pills .nav-item .nav-link {
    padding: 8px 14px;
    font-size: 12px;
  }
  .home3 {
    background-size: cover;
  }
}
@media only screen and (max-width: 1099px) {
  .banner {
    padding-top: 0;
  }
  .banner .banner-text .heading1 {
    font-size: 35px;
    line-height: 48px;
  }
  .banner .banner-text p {
    font-size: 15px;
  }
  .contact .home-contact-text::before {
    left: 30px;
  }
  .feature-modal .modal .modal-dialog {
    max-width: 50%;
    top: 28px;
  }
}
@media only screen and (max-width: 991px) {
  header .navbar {
    padding: 15px 0;
  }
  header .navbar .navbar-brand img {
    width: 170px;
  }
  header .navbar .navbar-toggler {
    position: absolute;
    right: 10px;
    top: 50%;
    translate: 0 -50%;
    box-shadow: none !important;
    border: 0;
  }
  header .navbar .navbar-nav {
    display: block;
    padding: 10px 0;
  }
  header .navbar .navbar-nav::before {
    display: none;
  }
  header .navbar .navbar-nav .nav-item {
    margin: 0;
  }
  header .navbar .navbar-nav .nav-item .nav-link {
    text-align: left;
    padding: 6px 0;
  }
  header .navbar .has-dropdown .drop-menu {
    position: static;
    transform: translate(0);
    display: none;
    padding: 0;
    width: auto;
    padding-top: 15px;
  }
  header .navbar .has-dropdown:hover .drop-menu {
    background-color: transparent;
    display: block;
    transform: translate(0);
    box-shadow: none;
  }
  header .navbar .navbar-links {
    position: relative;
    z-index: 0;
  }
  header .navbar .navbar-links .social-link {
    position: absolute;
    bottom: -30px;
    left: 0;
  }
  .navbar-collapse {
    background: #fff 0% 0% no-repeat padding-box;
    padding: 20px 15px;
    position: fixed;
    width: 250px;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    height: 100vh;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    overflow: scroll;
  }
  .navbar-collapse::-webkit-scrollbar {
    display: none;
  }
  .contact .home-contact-text {
    padding-left: 0;
  }
  .contact .home-contact-text::before {
    display: none;
  }
  .home5 .owl-theme .owl-nav,
  .design2 .owl-theme .owl-nav {
    position: relative;
    width: 100%;
    bottom: 0;
    top: inherit;
  }
  .shop-detail1::before {
    display: none;
  }
  .shop-detail1 .nav-pills {
    display: block;
    -moz-column-count: 3;
         column-count: 3;
  }
  .shop-detail1 .nav-pills .nav-item {
    margin-bottom: 10px;
  }
  .shop-detail1 .nav-pills .nav-item .nav-link {
    width: 100%;
  }
  .page-text .heading1 {
    font-size: 38px;
    line-height: 44px;
  }
  .feature-modal .modal .modal-dialog {
    max-width: 65%;
  }
  .enquire-modal .modal .modal-dialog {
    max-width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .heading2 {
    font: normal normal normal 26px/30px League Spartan;
  }
  .page-banner .page-text .heading1 {
    font-size: 28px;
    line-height: 34px;
  }
  footer .footer-title {
    margin-bottom: 8px;
  }
  .banner .banner-text .heading1 {
    font-size: 30px;
    line-height: 40px;
  }
  .banner .banner-text p {
    font-size: 14px;
  }
  .home1 .home1-line::after {
    display: none;
  }
  .nav-pills .nav-item {
    margin: 0 12px;
  }
  .enquire-modal .modal .modal-dialog {
    max-width: 90%;
    top: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .btn {
    padding: 8px 15px;
    min-width: 130px;
    font-size: 12px;
  }
  .heading2 {
    font: normal normal normal 22px/28px League Spartan;
  }
  .shop-detail1 .nav-pills {
    -moz-column-count: 2;
         column-count: 2;
  }
  footer .footer-top .footer-links .link1 {
    -moz-column-count: 1;
         column-count: 1;
  }
  .nav-pills {
    -moz-column-count: 2;
         column-count: 2;
    display: block;
  }
  .nav-pills .nav-item {
    margin: 0 0 15px 0;
  }
  .banner .banner-text {
    top: 38px;
  }
  .home3 {
    padding: 40px 0;
  }
  .home3 .owl-theme .owl-nav {
    position: relative;
    bottom: 0;
    top: inherit;
    left: 0;
    width: 100%;
  }
  .feature-box .feature-text .feature-title {
    font: normal normal 500 18px/24px League Spartan;
  }
  .page-text .heading1 {
    font-size: 30px;
    line-height: 34px;
  }
  .design2 {
    padding: 40px 0;
  }
  .shop-detail .carousel .carousel-indicators {
    justify-content: space-between;
  }
  .shop-detail .carousel .carousel-indicators button {
    margin-right: 0;
  }
  .shop-detail .carousel .carousel-control-prev {
    left: -18px;
  }
  .shop-detail .carousel .carousel-control-next {
    right: -18px;
  }
  .shop-detail .btn-link {
    min-width: 170px;
    padding: 0 8px;
  }
  .related-product .owl-theme .owl-nav {
    position: relative;
    bottom: 0;
    top: inherit;
    width: 100%;
  }
  .feature-modal .modal .modal-dialog {
    max-width: 85%;
  }
  .feature-modal .modal .modal-dialog .modal-content .modal-body .carousel button {
    width: 25px;
    height: 25px;
  }
  .feature-modal .modal .modal-dialog .modal-content .modal-body .carousel button .fa {
    font-size: 20px;
  }
  .feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-item .carousel-caption {
    padding: 15px 20px 15px 20px;
  }
  .feature-modal .modal .modal-dialog .modal-content .modal-body .carousel .carousel-item .carousel-caption ul {
    display: block;
    -moz-column-count: 2;
         column-count: 2;
  }
  .feature-modal .modal .modal-dialog .modal-content .modal-body .content-btn {
    right: 0;
    bottom: 0;
    position: relative;
    padding: 0px 20px 10px 20px;
  }
  .modal .modal-dialog .btn-close {
    top: -25px;
    right: 0;
  }
  .enquire-modal .modal .modal-dialog .modal-content .modal-body .enquire-text {
    padding: 20px 20px;
  }
  .shop-box .shop-box-text .pro-name {
    font-size: 16px;
  }
  .shop-box .shop-box-text .price {
    font-size: 13px;
    line-height: 18px;
  }
  .product-box .product-box-content .pro-name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 460px) {
  .shop-detail .shop-inner .shop-inner-content .heading2 {
    font-size: 24px;
    line-height: 30px;
  }
  .shop-detail .shop-inner .shop-inner-content .price {
    font-size: 20px;
    line-height: 28px;
  }
  .banner .banner-text .heading1 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 5px !important;
  }
  .banner .banner-text p {
    line-height: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-detail1 .nav-pills {
    -moz-column-count: 1;
         column-count: 1;
  }
  .design2 .nav-pills .nav-item .nav-link {
    font-size: 14px;
    line-height: 18px;
  }
  .shop-detail .carousel button {
    bottom: 8px;
  }
}/*# sourceMappingURL=style.css.map */