nav ul,
nav li {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:visited {
  text-decoration: none;
}

.menu-bar {
  display: flex;
  justify-content: end;
}

.menu-link {
  padding: 20px 25px;
  transition: background .2s, color .2s;
  position: relative;
  z-index: 1;
}

.menu-link[aria-haspopup="true"] {
  padding-right: 40px;
}

.menu-link[aria-haspopup="true"]:after {
  content: "";
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowRight.svg#accent");
  background-size: 14px;
  width: 14px;
  height: 14px;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  filter: brightness(10);
}

.mega-menu-header {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
}

.mega-menu {
  z-index: 10;
}

.mega-menu--multiLevel {
  flex-direction: column;
}

@media all and (min-width: 1200px) {
  .menu [aria-haspopup="true"]~ul {
    display: none;
  }



  .menu-bar {
    position: relative;
  }

  .menu-bar>li>[aria-haspopup="true"]:after {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowBottom.svg#accent");
  }

  .menu-bar>li>[aria-haspopup="true"]:hover:after {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowBottom.svg#light");
  }

  .menu-bar>li>[aria-haspopup="true"]:focus~ul {
    display: flex;
    transform-origin: top;
    animation: dropdown .2s ease-out;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul:hover {
    display: flex;
  }

  .menu-bar>li:focus-within>[aria-haspopup="true"]~ul {
    display: flex;
  }

  .menu-bar>li>[aria-haspopup="true"]:focus,
  .menu-bar>li:focus-within>[aria-haspopup="true"],
  .menu-bar>li:hover>a {
    background: #f5bb00;
    color: #ffffff;
  }

  .menu-bar>li>[aria-haspopup="true"]:focus:after,
  .menu-bar>li:focus-within>[aria-haspopup="true"]:after,
  .menu-bar>li:hover>a:after {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowTop.svg#light");
  }

  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100% ;
  }
/* .category{
   width: 134% !important;
  transform: translateX(-25%) !important;
} */
  .category li a{font-size: 16px;}
  .mega-menu:hover {
    display: flex;
  }

  .mega-menu a:hover {
    background: tint(#f5bb00, 85%);
    color: #ffb003;
  }

  .mega-menu--multiLevel>li {
    width: 25%;
  }

  .mega-menu--multiLevel>li>[aria-haspopup="true"]~ul {
    left: 25%;
    width: 25%;
  }

  .mega-menu--multiLevel>li>[aria-haspopup="true"]~ul ul {
    width: 100%;
    left: 100%;
  }

  .mega-menu--multiLevel>li img {
    width: 24px;
    margin-right: 15px;
  }

  .mega-menu--multiLevel li:hover>[aria-haspopup="true"]~ul {
    display: block;
    transform-origin: left;
    animation: flyout .2s ease-out;
  }

  .mega-menu--multiLevel li:focus-within>[aria-haspopup="true"]~ul {
    display: block;
  }

  .mega-menu--multiLevel li:hover>[aria-haspopup="true"],
  .mega-menu--multiLevel li:hover>a,
  .mega-menu--multiLevel li:focus-within>[aria-haspopup="true"],
  .mega-menu--multiLevel li:focus-within>a {
    background: tint(#f5bb00, 85%);
    color: #ffb003;
  }

  .mega-menu--multiLevel [aria-haspopup="true"]~ul,
  .mega-menu--multiLevel [aria-haspopup="true"] {
    border-left: 1px solid #f0f0f0;
  }

  .mega-menu--multiLevel [aria-haspopup="true"]~ul:hover,
  .mega-menu--multiLevel [aria-haspopup="true"]:hover {
    display: block;
  }

  .mega-menu--multiLevel [aria-haspopup="true"]~ul {
    position: absolute;
    top: 0;
    height: 100%;
  }

  .mega-menu--flat>* {
    flex: 1;
  }

  .mobile-menu-trigger,
  .mobile-menu-header,
  .mobile-menu-back-item {
    display: none;
  }
}

@media all and (max-width: 1200px) {

  .mobile-menu-trigger,
  .mobile-menu-header,
  .mobile-menu-back-item {
    display: block;
  }

  .mobile-menu-trigger {
    color: #ffffff;
    border: 0;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 4px;
    width: 50px;
    text-align: center;
    position: absolute;
    z-index: 1;
    right: 1px;
    top: 8px;
  }

  .mobile-menu-header {
    order: -1;
    background: grey;
  }

  .mobile-menu-header a {
    padding: 20px 25px;
    color: #ffffff;
    visibility: visible;
  }

  .menu-bar {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 350px;
    max-width: 350px;
    max-width: 90%;
    overflow-x: hidden;
    transition: left .3s;
    box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.25);
  }

  .menu-bar>li>[aria-haspopup="true"]~ul {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    left: 100%;
    top: 0;
    max-height: 100vh;
    width: 100%;
    transition: left .3s;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul>li>[aria-haspopup="true"] {
    font-size: 1.2em;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul>li>[aria-haspopup="true"]~ul a {
    padding-left: 40px;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul>li>[aria-haspopup="true"]~ul>li>[aria-haspopup="true"]~ul a {
    padding-left: 80px;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"] {
    color: #2b2a28;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]:after {
    content: "+";
    background: none;
    font-size: 1em;
    font-weight: normal;
    height: 20px;
    line-height: 1;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]~ul {
    max-height: 0px;
    transform-origin: top;
    transform: scaleY(0);
    transition: max-height .1s;
  }

  .mega-menu-content {
    padding: 20px 25px;
  }

  .mobile-menu-back-item {
    order: -1;
  }

  .mobile-menu-back-item a {
    background: tint(grey, 70%);
    color: #2b2a28;
    max-height: "calc(1.4em + 40px)";
    margin-top: "calc(0px - (1.4em + 40px))";
    pointer-events: none;
  }

  .mobile-menu-back-item a:before {
    content: "";
    width: 14px;
    height: 12px;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowLeft.svg#default");
    background-size: 14px;
    margin-right: 10px;
    display: inline-block;
  }

  .mobile-menu-trigger:focus~ul {
    left: 0;
  }

  .menu-bar:hover,
  .menu-bar:focus-within {
    left: 0;
  }

  .menu-bar>li>[aria-haspopup="true"]:focus~ul {
    left: 0;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul {
    margin-top: "calc(1.4em + 40px)";
  }

  .menu-bar>li>[aria-haspopup="true"]~ul:hover,
  .menu-bar>li>[aria-haspopup="true"]~ul:focus-within {
    left: 0;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]:focus~ul {
    max-height: 500px;
    animation: dropdown .3s forwards;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul li:focus-within>[aria-haspopup="true"]~ul {
    max-height: 500px;
    transform: scaleY(1);
  }

  .menu-bar>li:focus-within~.mobile-menu-header a {
    visibility: hidden;
  }
}

@media all and (max-width: 1200px) and (hover: none) {
  .mobile-menu-trigger:hover~ul {
    left: 0;
  }

  .menu-bar>li>[aria-haspopup="true"]:hover~ul {
    left: 0;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul:hover {
    left: 0;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]:hover~ul {
    max-height: 500px;
    animation: dropdown .3s forwards;
  }

  .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]~ul:hover {
    max-height: 500px;
    transform: scaleY(1);
  }

  .menu-bar>li:hover~.mobile-menu-header a {
    visibility: hidden;
  }
}

@keyframes dropdown {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes flyout {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

body {
  font-family: "Mont Regular";
  overflow-x: hidden;
}

.media-icon {
  position: fixed;
  left: 10px;
  bottom: 30%;
  width: 50px;
  z-index: 9;
}

.media-icon .bi {
  /* background: #f5bb00; */
  color: #fff;
  display: block;
  margin-bottom: 4px;
  border-radius: 100%;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.04);
}

.media-icon .bi-facebook{background: #166ae7;}
.media-icon .bi-linkedin{background: #0076b4;}
.media-icon .bi-whatsapp{background: #20d265;}
.media-icon .bi-instagram{background: linear-gradient(to right, #fba815, #fa0288, #7334e9);}
.media-icon .bi-youtube{background: #fd1101;}
.media-icon .bi-twitter-x{background: #000;}

.topbar {
  background: #f5bb00;
  padding: 10px 0;
  display: none;
}

.topbar p {
  line-height: 22px;
  color: #2b2a28;
  font-family: "Mont Regular";
  font-weight: 500;
  margin-bottom: 0;
}

.topbar p a {
  color: #2b2a28;
}

.topbar p span {
  font-size: 16px;
}

.topbar p span .d-block {
  font-size: 18px;
  color: #2b2a28;
  font-weight: 700;
}

.topbar p .bi {
  margin-right: 8px;
}

.navbar_header {
  /* background: #f5bb00; */
  position: relative;
  padding: 13px 0;
  top: 0;
  width: 100%;
  z-index: 9;
}

.navbar_header .container-fluid {
  width: 98%;
}

.navbar_header ul li a {
  color: #fff !important;
  font-family: "Mont Regular" !important;
  text-transform: capitalize;
  font-weight: 400 !important;
  font-size: 18px !important;
}

.navbar_header ul li:hover a {
  background: #f5bb00;
  color: #fff;
}

.navbar_header .menu-bar>li>[aria-haspopup="true"]:focus {
  background: none;
}

.navbar_header .menu {
  width: 100%;
  background: none;
 
}

.navbar_header .menu li {
  position: relative;
}

.navbar_header .menu li a {
  padding: 9px 15px !important;
  display: inline-block;
  /* font-weight: 600 !important; */
  font-size: 20px !important;
  color: #2b2a28 !important;
  text-transform: uppercase !important;
  line-height: 30px !important;
  padding-right: 30px !important;
  /* font-family: "Mont Heavy" !important; */
  font-family: "Mont Heavy" !important; 
  white-space: nowrap;
}

.navbar_header .menu li ul li a {
  font-size: 16px;
  color: #2b2a28 !important;
  line-height: 22px !important;
  width: 100%;
}
.navbar_header .menu li ul li a:hover{
  background: #2b2a28;
  color: #fff !important;
}

.navbar_header .menu li ul li a::after {
  filter: brightness(0);
}
.navbar_header .menu li ul li:hover a::after{ filter: invert(1) brightness(100);}
.navbar_header .menu li ul li:hover img{filter: invert(1);}

.navbar_header .menu li ul li .menu-list {
  border-right: 1px solid rgba(0, 0, 0, 0.445);
  border-left: 1px solid rgba(0, 0, 0, 0.445);
}

.navbar_header .menu .position li {
  position: static !important;
}

.navbar_header .mega-menu.category {
  background: #f5bb00;
  /* border-radius: 5px; */
  min-height: 550px;
  overflow-y: auto;
  width: 100%;
  padding: 20px 0;
}

.navbar_header .mega-menu {
  background: #f5bb00;
  /* border-radius: 5px; */
  width: 300px;
  padding: 20px 0;
}

.navbar_header .mega-menu li a {
  padding-right: 15px !important;
  background: #f5bb00;
}

.navbar_header .mega-menu ul {
  background: #f5bb00;
  padding: 20px 0;
}

.navbar_header .mega-menu--multiLevel>li {
  width: 100%;
  background: #f5bb00;
}

.navbar_header .position {
  position: static !important;
}

.navbar_header .position .mega-menu--multiLevel>li {
  width: 25%;
}

.navbar_header nav {
  width: 100%;
}

.mega-menu--multiLevel [aria-haspopup="true"]~ul,
.mega-menu--multiLevel [aria-haspopup="true"] {
  border: 0;
}

.menu-bar>li>[aria-haspopup="true"]::after {
  filter: brightness(0);
}

.navbar_header.bg-dark {
  position: fixed;
  top: 0;
  background: #fff !important;
  box-shadow: 0 16px 36px rgba(34, 82, 130, 0.1);
  padding: 5px 0;
}

.navbar_header.bg-dark .nav-brand img {
  /* width: 310px; */
  transition: 1s ease-in-out;
}

.navbar_header.bg-dark li a {
  color: #2b2a28 !important;
}

.navbar_header.bg-dark li li a {
  color: #2b2a28 !important;
}

/*.searchbar {
   hide the placeholder text on focus 
}*/


@media (min-width:1200px) {
  .navbar_header .menu .position li.menu-banner-image-container {
    position: absolute !important;
    left: auto !important;
    right: 0px !important;
    top: 10px;
    bottom: 10px;
    width: 25%;
  }
  
  #menu-banner-image {
    width: 100% !important;
    height: 500px;
    object-position:top center !important;
    object-fit: contain;
  }
  #menu-banner-image:hover{filter: invert(0) !important;}
  .navbar_header .mega-menu--multiLevel.category{
   width: 134%;
   transform: translateX(-25%);
   overflow-x: hidden;
  }
  
  
}
.searchbar form {
  margin-bottom: 0;
}

.searchbar .searchInputWrapper {
  position: relative;
  border-radius: 5px;
  background: #e8e8e8  ;
}

.searchbar .searchInput {
  width: 12rem;
  height: 2.5rem;
  padding-left: 12px;
  border-radius: 2rem;
  border: none;
  transition: transform 0.1s ease-in-out;
  border: 1px solid #000;
  background: none;
  color: #2b2a28;
  letter-spacing: .5px;
  font-family:"Mont SebiBold";
  
}
.searchbar input{
  border: 0;  width: 350px;
  height: 50px;
  background: none;
}
.searchbar ::placeholder {
  color: #555;
  font-family:"Mont Heavy";
  font-weight: 400;
  font-size: 14px;
  background: none;
  border: none;

  outline: none;
  box-shadow: none;
}

.searchbar :focus::placeholder {
  text-indent: -999px;
}

.searchbar .searchInput:focus {
  outline: none;
}

.searchbar .searchInputIcon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  color: #2b2a28;
  transition: all 0.1s ease-in-out;
  margin-top: 5px;
}

.searchbar button {
  background: none;
  height: 50px;
  color: #fff;
  text-align: center;
}

.searchbar .cartbutton {
  position: relative;
  right: 5px;
}

.searchbar .cartbutton a {
  color: #2b2a28;
  position: relative;
}

.searchbar .cartbutton a #items {
  position: absolute;
  font-family: "Roboto";
  top: -20px;
  font-size: 12px;
  right: -10px;
  display: block;
  background: #2b2a28;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 17px;
  padding: 2px;
}

.searchbar .cartbutton .bi {
  font-size: 30px !important;
}

.offcanvas form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offcanvas input {
  width: 100%;
  border: 1px solid #eee;
  height: 48px;
  padding-left: 15px;
  border-radius: 7px;
}

.offcanvas .searchInputIcon {
  width: 10%;
  height: 48px;
  background: #f5bb00;
  color: #2b2a28;
}

.banner {
  position: relative;
}

.banner .carousel-item {
  height: 950px;
  background: #2b2a28;
}

.banner video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: 50% 80% !important;
  background-size: cover !important;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .carousel-caption {
  display: flex;
  bottom: 100px;
  align-items: center;
  left: 8%;
  right: 8%;
  top: 100px;
  /* background: rgba(255, 255, 255, 0.9); */
  padding: 20px;
}

@media (min-width: 992px) {
  .banner .carousel-caption {
    width: 820px;
  }
}

.banner .carousel-caption img {
  width: 130px;
  display: none;
}

.banner .carousel-caption p {
  font-family: "Mont Heavy";
  font-weight: 30;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 48px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.banner .carousel-caption h2 {
  font-size: 48px;
font-family: "Mont Bold"; 
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: left;
  margin-left: 25px;
}

.banner .carousel-caption h1 {
  font-size: 90px;
  font-family: "Mont Heavy";
  /* font-weight: 800; */
  line-height: 80px;
  color: #ffffff;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
}

.banner .carousel-control-next,
.banner .carousel-control-prev {
  width: 80px;
}

.banner .carousel-indicators button {
  height: 15px;
  width: 15px;
}

.our-brand {
  padding: 70px 0 50px 0;
  position: relative;
  background: #414141;
}

.our-brand h4 {
  font-family: "Roboto";
  font-weight: 700;
  color: #f5bb00;
  font-size: 48px;
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.our-brand .container {
  border-radius: 10px;
}

.our-brand .box {
  background: #fff;
  box-shadow: 0 16px 36px rgba(34, 82, 130, 0.1);
  margin-bottom: 30px;
  padding: 15px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0 0 1.25rem rgba(30, 34, 40, 0.04);
  border: 1px solid rgba(164, 174, 198, 0.2);
}

@media (min-width: 992px) {
  .our-brand .col-lg-2 {
    width: 20%;
  }
}

.about-us {
  padding: 70px 0px 100px 0px;
  position: relative;
}

.about-us .container-fluid {
  position: relative;
  z-index: 1;
}

.about-us h2 {
  font-size: 24px;
  font-family: "Mont SemiBold";
  font-weight: 400;
  margin-bottom: 20px;
  color: #f5bb00;
  position: relative;
}

.about-us h2::after {
  background: #f5bb00;
  top: 50%;
  border-radius: 10px;
  content: "";
  height: 2px;
  right: auto;
  transform: translateY(-50%);
  margin-top: 0;
  position: absolute;
  width: 55px;
  margin-left: 25px;
}

.about-us h3 {
  font-family: "Mont Heavy";
  /* font-weight: 700; */
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #2b2a28;
}

.about-us p {
  font-family: "Mont Regular";
  font-size: 18px;
  /* opacity: .6; */
  /* letter-spacing: 1px; */
}

.about-us .btn {
  background: #2b2a28;
  color: #fff;
  font-family: "Mont Heavy";
  margin: 20px 0;
  padding: 12px 30px;
}

.about-us img {
  border-radius: 7px;
}

.new-porduct {
  padding: 70px 0 90px 0;
  position: relative;
}

.new-porduct h2 {
  font-family: "Mont Heavy";
  text-align: center;
  /* font-weight: 700; */
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: #2b2a28;
  font-size: 60px;
}

.new-porduct .item {
  position: relative;
}

.new-porduct .item p {
  color: #2b2a28;
  font-family: "Mont Heavy";
  font-size: 22px;
  margin-top: 15px;
  text-transform: uppercase;
  position: absolute;
  z-index: 9;
  /* font-weight: 700; */
  bottom: 25px;
  background: linear-gradient(to right, #f5bb00, #f5bb00, rgba(255, 183, 28, 0));
  padding: 5px 150px 5px 25px;
  text-align: center;
}

.new-porduct .item img {
  border-radius: 4px;
}

.new-porduct .owl-nav {
  display: none;
}

#upcoming_events .carousel-indicators button {
  background: #f5bb00;
  height: 15px;
  width: 15px;
  border-radius: 0;
  border: 0;
}

#upcoming_events h2 {
  font-family: "Mont Heavy";
  font-weight: 600;
}

#upcoming_events p {
  font-family: "Mont Regular";
}

.product {
  position: relative;
  padding: 70px 0;
  background: #f5bb00;
}

.product .product-background {
  background-position: 50% 50% !important;
  background-size: cover !important;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: .05;
  mix-blend-mode: multiply;
}

.product .container-fluid {
  position: relative;
  z-index: 1;
}

.product .title {
  margin-bottom: 20rpx;
}

.product .title h3 {
  font-size: 60px;
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0px;
  color: #2b2a28;
}

.product .title p {
  color: #2b2a28;
  text-align: center;
  font-size: 30px;
  text-transform: capitalize;
  font-family: "Mont SemiBold";
  /* font-weight: 500; */
  margin-bottom: 30px;
}

.product .title img {
  /* filter: grayscale(1); */
  mix-blend-mode: multiply;
}

.product .box {
  position: relative;
  transition: 1s ease-in-out;
  margin:5px;
  margin-bottom: 30px;
}

.product .box .imgbox img {
  border-radius: 4px;
  height: 480px;
  object-fit: contain;
}

.product .box:hover {
  transition: 1s ease-in-out;
}

.product .box:hover h3 {
  color: #fff;
}

.product .box p {
  color: #2b2a28;
  text-align: center;
  font-size: 30px;
  line-height: 38px;
  padding: 20px 0 0 0;
  text-transform: capitalize;
  font-family: "Mont Heavy";
  /* font-weight: 700; */
  min-height: 110px;
  margin-bottom: 0;
}

.product .owl-nav {
  text-align: center;
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

.product .owl-nav button {
  width: 40px;
  background: #fff !important;
}

.product .owl-nav button span {
  font-size: 24px;
}

.quality-policy {
  padding: 100px 0px 100px 0px;
  position: relative;
}

.quality-policy h2 {
  font-size: 24px;
  font-family: "Mont SemiBold";
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #f5bb00;
  position: relative;
  display: inline-block;
}

.quality-policy h2::after {
  background: #f5bb00;
  top: 50%;
  border-radius: 10px;
  content: "";
  height: 2px;
  right: auto;
  transform: translateY(-50%);
  margin-top: 0;
  position: absolute;
  width: 55px;
  margin-left: 25px;
}

.quality-policy h3 {
  font-family: "Mont Heavy";
  /* font-weight: 700; */
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #2b2a28;
}

.quality-policy h4 {
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  font-size: 28px;
  margin-bottom: 20px;
  color: #f5bb00;
}

.quality-policy p {
  font-family: "Mont Regular";
  font-size: 16px;
  /* opacity: .6; */
  letter-spacing: .5px;
}

.quality-policy .btn {
  background: #f5bb00;
  color: #2b2a28;
  font-family: "Mont SemiBold";
  margin: 20px 0;
  padding: 8px 30px;
}

.quality-policy .d-flex p {
  font-size: 18px;
  padding: 15px 30px;
  margin: 15px 0;
  background: #f5bb00;
  opacity: 1;
  width: 32%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.quality-policy .box {
  border: 1px solid #eee;
  padding: 8px 15px;
  margin-bottom: 15px;
  text-align: center;
}

.industries-we-serve {
  position: relative;
  padding: 90px 0;
  background: #222429;
}

.industries-we-serve h3 {
  font-family: "Mont Heavy";
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
}

.industries-we-serve h3::after {
  background: #fff;
  top: 50%;
  border-radius: 10px;
  content: "";
  height: 2px;
  right: auto;
  transform: translateY(-50%);
  margin-top: 0;
  position: absolute;
  width: 55px;
  margin-left: 25px;
}

.industries-we-serve h4 {
  font-size: 48px;
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #f5bb00;
  text-transform: uppercase;
}

.industries-we-serve p {
  color: #fff;
  /* opacity: .8; */
  font-size: 18px;
  font-family: "Mont Regular";
  margin-bottom: 30px;
  /* letter-spacing: 1px; */
}

.industries-we-serve a {
  color: #f5bb00;
  font-family: "Mont SemiBold";
  text-transform: capitalize;
  letter-spacing: 2px;
}

.industries-we-serve .box {
  position: relative;
}

.industries-we-serve .box::after {
  width: 10px;
  background: #f5bb00;
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: -10px;
}
@media (min-width:1200px) {
  .industries-we-serve .col-xl-2 {width: 20%;}
}
.industries-we-serve .industries-box {
  margin: 40px 0;
  text-align: center;
  background: #f5bb00;
  padding: 25px 0;
  position: relative;
}

.industries-we-serve .industries-box::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222429;
  height: 0%;
  top: 0;
  content: '';
  transition: all 300ms linear;
}

.industries-we-serve .industries-box img {
  position: relative;
  z-index: 1;
  filter: grayscale(1) brightness(0);
}

.industries-we-serve .industries-box:hover::after {
  transition: 1s;
  height: 98%;
}

.industries-we-serve .industries-box:hover h5 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.industries-we-serve .industries-box:hover img {
  position: relative;
  z-index: 1;
  filter: grayscale(1) brightness(1);
}

.industries-we-serve .industries-box h5 {
  color: #2b2a28;
  padding: 10px 0;
  font-weight: normal;
  font-size: 24px;
  font-family: "Mont SemiBold";
}

.industries-we-serve .industries-box img {
  margin-bottom: 25px;
}

.industries-we-serve .industries-we-serve-background {
  position: absolute;
  background-position: 50% 50% !important;
  background-size: cover !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .5;
}

.industries-we-serve .container-fluid {
  position: relative;
  z-index: 1;
}

.clients {
  padding: 100px 0;
  position: relative;
}

.clients h4 {
  font-size: 42px;
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.clients .box {
  background: #fff;
  text-align: center;
  overflow: hidden;
  padding: 10px 25px;
  border: 1px solid #eee;
}

.clients .box img {
  width: 250px;
  text-align: center;
  display: inline-block;
}

.clients .box:hover img {
  transform: scale(1.1);
  transition: 1s ease-in-out;
  filter: grayscale(1);
}

.clients .btn {
  background: #2b2a28;
  color: #fff;
  font-family: "Mont Regular";
  margin: 20px 0;
  padding: 10px 30px;
}

@media (max-width: 991px) {
  .clients .owl-dots {
    margin-top: 40px;
    text-align: center;
  }

  .clients .owl-dots button {
    background: #2b2a28;
    height: 15px;
    width: 15px;
    border-radius: 100px;
    opacity: .8;
    margin-right: 5px;
  }

  .clients .owl-dots .active {
    opacity: 1;
  }
}

.participations {
  padding: 70px 0 70px 0;
  position: relative;
  background: #F8F8F8;
}

.participations .container-fluid {
  position: relative;
  z-index: 1;
}

.participations h3 {
  font-size: 42px;
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #2b2a28;
  text-align: center;
}

.participations .box {
  margin-bottom: 35px;
  flex-wrap: wrap;
  text-align: center;
  overflow: hidden;
  padding: 10px;
}

.participations h4 {
  font-family: "Mont SemiBold";
  /* font-weight: 600; */
  font-size: 20px;
  color: #2b2a28;
  margin-bottom: 15px;
}

.participations .content {
  margin-top: 10px;
  position: absolute;
  text-align: left;
  bottom: 25px;
  background: #f5f5f5;
  width: 300px;
  left: 25px;
  padding: 25px;
  z-index: 2;
  border-radius: 5px;
}

.participations .imgbox {
  height: 500px;
  width: 100%;
  background-size: cover !important;
  border-radius: 15px;
  background-position: 50% 50% !important;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: inline-block;
}

.participations .imgbox::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
}

.participations .owl-item {
  opacity: .3;
}

.participations .owl-item.active {
  opacity: 1 !important;
}

.participations .owl-nav {
  text-align: center;
}

.participations .btn {
  background: #f5bb00;
  color: #2b2a28;
  font-family: "Mont SemiBold";
  letter-spacing: 1px;
  margin: 20px 0;
  padding: 10px 30px;
}

@media (max-width: 991px) {
  .participations .owl-dots {
    margin-top: 40px;
    text-align: center;
  }

  .participations .owl-dots button {
    background: #2b2a28;
    height: 15px;
    width: 15px;
    border-radius: 100px;
    opacity: .8;
    margin-right: 5px;
  }

  .participations .owl-dots .active {
    opacity: 1;
  }
}

.our-comitment-for-socity {
  padding: 70px 0;
  position: relative;
}

.our-comitment-for-socity h2 {
  font-size: 30px;
  position: relative;
  color: #f5bb00;
  font-family: "Mont SemiBold";
}

.our-comitment-for-socity h2::after {
  background: #f5bb00;
  top: 50%;
  border-radius: 10px;
  content: "";
  height: 2px;
  right: auto;
  transform: translateY(-50%);
  margin-top: 0;
  position: absolute;
  width: 55px;
  margin-left: 25px;
}

.our-comitment-for-socity h3 {
  font-size: 36px;
  font-family: "Mont Heavy";
  /* font-weight: 700; */
  text-transform: uppercase;
  margin: 30px 0;
}

.our-comitment-for-socity p {
  font-family: "Mont Regular";
  font-size: 18px;
  /* opacity: .8; */
}

.our-comitment-for-socity .box {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: 20px 0;
  padding: 30px;
}

.our-comitment-for-socity .box h4 {
  font-size: 18px;
  min-height: 50px;
  margin-bottom: 0;  font-family: "Mont SemiBold";
}

.our-comitment-for-socity .box img {
  margin-bottom: 25px;
}

.our-comitment-for-socity .btn {
  margin-top: 30px;
  font-family: "Mont SemiBold";
  background: #2b2a28;
  color: #fff;
  margin: 20px 0;
  padding: 10px 30px;
}

.our-comitment-for-socity .carousel {
  margin-bottom: 50px;
}

.our-comitment-for-socity .carousel-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  display: flex !important;
  align-items: end;
  justify-content: center;
}

.our-comitment-for-socity .carousel-caption h5 {
  font-family: "Mont Heavy";
  color: #f5bb00;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.world-map {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background-color: #2b2a28;
  text-align: center;
}

.world-map .container-fluid {
  position: relative;
  z-index: 1;
}

.world-map h2 {
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  font-size: 60px;
  margin-bottom: 30px;
  color: #fff;
  text-transform: uppercase;
}

.world-map h3 {
  font-family: "Mont Regular";
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 80px !important;
  color: #fff;
}

.world-map p {
  font-family: "Mont Regular";
  color: #f5bb00;
  letter-spacing: 1px;
}

.world-map p span {
  background: #ffb71c;
  padding: 8px 25px;
  margin: 5px;
  display: inline-block;
  color: #2b2a28;
}
 

@media (min-width: 992px) {
  .world-map .ag-canvas_svg {
    width: 70%;
  }
}

.world-map .ag-canvas_svg path {
  fill: #f1f3f5;
  fill-opacity: 1;
  stroke: #2b2a28;
  stroke-opacity: 1;
  stroke-width: 0.5;
  transition: 0.5s;
}

@media screen and (max-width: 767px) {
  .world-map .ag-canvas {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    height: auto;
    padding: 4rem 1rem 1rem;
  }

  .world-map .ag-canvas_svg {
    max-height: calc(100% - 6rem);
    margin-left: 0;
  }
}

.tooltip {
  font-family: "Mont Heavy";
  font-size: 16px;
  color: #f5bb00 !important;
}

.footer {
  background: #f1f3f5;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.footer .footer-background {
  position: absolute;
  background-position: 50% 0% !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  filter: brightness(0);
  opacity: 0.4;
  transform: scale(1.1);
}

.footer .container-fluid {
  position: relative;
  z-index: 1;
}

.footer h2 {
  font-family: "Mont Heavy";
  /* font-weight: 700; */
  color: #2b2a28;
  font-size: 24px;
  margin-bottom: 30px;
}

.footer ul {
  padding-left: 0;
  list-style: none;
}

.footer ul li a {
  display: inline-block;
  color: #2b2a28;
}

.footer ul li a:hover {
  color: #f5bb00;
}

.footer p,
.footer li a {
  font-family: "Mont SemiBold";
  font-size: 16px;
  color: #2b2a28;
  margin-bottom: 15px;
}

.footer p a,
.footer li a a {
  color: #2b2a28;
}

.footer p a:hover,
.footer li a a:hover {
  color: #f5bb00;
}

.footer p .bi,
.footer li a .bi {
  color: #f5bb00;
}

.footer p strong,
.footer li a strong {
  font-weight: 500;
  font-family: "Mont SemiBold";
}

.footer .icon .bi {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: #2b2a28;
  border: 1px solid rgba(0, 0, 0, 0.227);
  text-align: center;
}

.copyright {
  background: #222429;
  padding: 20px 0;
}

.copyright p {
  margin-bottom: 0;
  font-family: "Mont Regular";
  font-size: 18px;
  color: #fff;
}

#back-to-top {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 9;
}

#back-to-top .bi {
  background: #fff;
  color: #2b2a28;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 48px;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
}

.inner-banner {
  padding: 0px 0 0 0;
  position: relative;
  /* background: #2b2a28; */
  border-top: 2px solid #2b2a28;
}
.inner-banner .img-fluid{width: 100%;}
.inner-banner h1 {
  color: #2b2a28;
  font-family: "Mont Heavy";
 
  text-transform: uppercase;
  font-size: 36px;
}

.inner-banner .breadcrumb {
  color: #f5f5f5;
  font-family: "Mont Heavy";
}

.inner-banner .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #f5bb00;
}

.inner-banner .breadcrumb li {
  color: #f5bb00 !important;
  font-size: 14px; 
  font-family: "Mont Heavy";
}

.inner-banner .breadcrumb a {
  color: #2b2a28 !important;
}

.inner-banner .breadcrumb .active {
  color: #f1f3f5;
}

.contact-inner {
  padding: 70px 0;
  position: relative;
}

.contact-inner h2, .contact-inner h1 {
  font-size: 48px;
  font-family: "Mont Heavy";
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: .5px;
 
}

.contact-inner p {
  font-family: "Mont Regular";
  color: #2b2a28;
}

.contact-inner p a {
  color: #2b2a28;
}

.contact-inner p strong {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 24px;
  margin-top: 10px;
  letter-spacing: normal;font-family: "Mont Heavy";
  display: inline-block;
}

.contact-inner p .bi {
  color: #fff;
  margin-right: 10px;
  background: #000;
  border-radius: 100%;
  width: 35px;height: 35px;
  line-height: 35px;
  display: inline-block;
  font-size: 18px;
}
.contact-inner p .bi::before{
  line-height: 35px;
}
.contact-inner p .bi-geo-alt{background: #de2525;}
.contact-inner p .bi-telephone{background: #f5bb00;}
.contact-inner p .bi-whatsapp{background: #44c052;}
.contact-inner p .bi-envelope{background: #357ae9;}

.contact-inner .form-control {
  font-family: "Mont Regular";
}
.contact-inner iframe, .contact-inner #contact_us{margin-top: 30px;}

.contact-inner .btn {
  background: #2b2a28;
  color: #fff;
  font-family: "Mont Regular";
  margin: 20px 0;
  padding: 10px 30px;
}

.contact-inner .contact-person {
  padding: 50px 0;
  text-align: center;
}

.contact-inner .contact-person h4 {
  font-family: "Mont Heavy";
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.contact-inner .box {
  /* background: #000; */
  text-align: center;
  padding: 35px;
  margin-bottom: 50px;
  min-height: 210px;
  border-radius: 15px;
}
.contact-inner .col-lg-3.col-md-6:nth-of-type(1) .box{border:4px solid #000;}
/* .contact-inner .col-lg-3.col-md-6:nth-of-type(1) .box strong{color: #de2525;} */

.contact-inner .col-lg-3.col-md-6:nth-of-type(2) .box{border:4px solid #000;}
/* .contact-inner .col-lg-3.col-md-6:nth-of-type(2) .box strong{color: #f5bb00;} */

.contact-inner .col-lg-3.col-md-6:nth-of-type(3) .box{border:4px solid #000;}
/* .contact-inner .col-lg-3.col-md-6:nth-of-type(3) .box strong{color: #44c052;} */

.contact-inner .col-lg-3.col-md-6:nth-of-type(4) .box{border:4px solid #000;}
/* .contact-inner .col-lg-3.col-md-6:nth-of-type(4) .box strong{color: #357ae9;} */

.product-inner .side-menu { padding-left: 0; margin-left: 30px; padding: 20px; position: sticky; top: 150px; box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);}
.side-menu  li{list-style: none; }
.side-menu  ul{margin-bottom: 15px;}
.side-menu  li .category-title, .side-menu  li a{font-family: "Mont Heavy"; font-size: 24px; line-height: 30px;  color: #2b2a28; }
.list-side a{  display: inline-block;}
.side-menu  li .category-title:hover, .side-menu  li a:hover{color: #f5bb00; }
/* .pro-list a{font-family: "Mont SemiBold"; font-size: 24px; padding: 5px 15px; color: #595959; display: inline-block;} */
.side-menu  ul li a{font-family: "Mont SemiBold"; font-size:18px; padding: 3px 1px; line-height: 22px; color: #2b2a28;display: inline-block;}
.side-menu  .list-side:hover .toggle-button-icon .bi{color: #f5bb00;}
.list-side{display: block;}
.side-menu  ul li a:hover{color: #f5bb00; background: none;}
.list-side .toggle-button-icon {float: right; cursor: pointer;line-height: 40px;}
.list-side .toggle-button-icon .bi{font-size: 24px;}
.side-menu .active{ color: #f5bb00; font-family: "Mont Heavy"; }
.side-menu .pro-list{padding-left: 5px;}
.side-menu li{padding: 8px 15px; border-bottom: 1px solid #eee;}
.side-menu li:last-child{border-bottom: 0;}
.side-menu .pro-list li{padding: 3px 0; border: 0;}

 




.contact-inner .box p{font-family: "Mont SemiBold";}

.product-inner {
  padding: 50px 0;
  position: relative;
  min-height: 450px;
}

.product-inner .box {
  margin-bottom: 30px;
  padding: 25px;
  position: relative;
}

.product-inner .box::after {
  border-left: 1px solid #acacac;
  content: '';
  top: 20px;
  bottom: 20px;
  position: absolute;
  right: -12px;
}

.product-inner .box .art-no {
  position: absolute;
  top: 30px;
  margin: 10px;
  right: 30px;height: 30px;border-radius: 3px;display: inline-block;
  background: #f5bb00;
  color: #2b2a28;
  padding: 0px 10px;
  font-family: "Mont Heavy";
  font-size: 18px;
  line-height: 30px;
  z-index: 1;
}

.product-inner .col-lg-4 {
  border-bottom: 1px solid #acacac;
  margin-bottom: 30px;
}

.product-inner .d-sm-flex {
  flex-direction: column-reverse;
  text-align: left;
}

.product-inner .d-sm-flex h2 {
  font-family: "Mont Heavy";
  margin-bottom: 15px;
  /* font-weight: 600; */
  min-height: 70px;
  font-size: 30px;
}

.product-inner .d-sm-flex p {
  font-family: "Mont Heavy";
  font-size: 18px;
  /* font-weight: 600; */
  text-transform: uppercase;
  /* letter-spacing: 2px; */
  color: #f5bb00;
  /* opacity: 0; */
}

.product-inner .d-sm-flex:hover p {
  opacity: 1;
  transition: .2s;
}

.product-inner .imgbox {
  margin-bottom: 25px;
  background: rgba(241, 243, 245, 0.7);
  padding: 20px 0;
}
.product-inner .box:hover .imgbox{
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.24);
}

.product-inner .imgbox img {
  mix-blend-mode: multiply;
  aspect-ratio: 1/1;
  object-fit: contain;
  height: 380px;

}

.product-details {
  padding: 70px 0;
  position: relative;
}

.product-details .product-img .main-image{
  border: 1px solid #ccc;margin-bottom: 15px;
  position: relative;
  padding: 5px;
}
.product-details .product-img .main-image::after{
  position: absolute;
  content: "\f14d";display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  font-size: 20px;
  right: 8px;
  top: 3px;
  cursor: pointer;
  z-index: 0;
}

.product-details .product-img .product-single-image {
  padding: 10px;
 width: 100% !important;
   mix-blend-mode: multiply;
   position: relative;z-index: 1;
}

.product-details .xzoom-thumbs {
  width: 100px;
}

.product-details .xzoom-thumbs .list-group-item img {
  width: 100px;
  padding: 5px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.16);
  border: 1px solid #ddd;
  height: 100px;
  object-fit: contain;
}

/* .product-details .xzoom-thumbs .list-group-item .xactive {
  box-shadow: 0 0 5px #f5bb00;
} */

.product-details .product-title {
  font-family: "Mont Heavy";
  font-size: 60px;
  position: relative;
  margin-bottom: 50px;letter-spacing: -1.2px;
}
.product-details .product-title::after{position: absolute; content: '';
 border-bottom: 5px solid #f5bb00; left: 0;  right: 0; bottom: -20px;}

 .product-details .product-title::before{position: absolute; content: '';
  border-bottom: 5px solid #2b2a28; left: 0; min-width: 80px; bottom: -20px; z-index: 1;}
.product-details .product-img {
  margin-right: 70px;
  position: sticky;
  top: 150px;
}

.product-img .d-sm-flex.flex-row-reverse.justify-content-between.align-items-start{
  display: block !important;
}
.product-details .xzoom-thumbs{display: flex; margin-bottom: 0; overflow: auto; width: 100%;}
#product_images{object-fit: contain; height: 800px; }
 

.product-details .main-image {
  width: 100% !important;
  text-align: center;
  cursor: pointer;
}
.product-details .main-image img{cursor: pointer;}
.mfp-image-holder .mfp-content{height: 100%;}
.mfp-bg{background: #fff !important; opacity: 1 !important;}
.mfp-close{position: absolute !important; z-index: 1; right: 20px !important; top: 20px !important; color: #000 !important;}
.mfp-figure{height: 100% !important;}
.mfp-figure::after{box-shadow: none !important;background: #fff !important;}
img.mfp-img{max-width: 100% !important;}
.mfp-content{width: 100% !important;}
.mfp-figure figure{height: 100%;  display: flex;  justify-content: center;  align-items: center;}


.product-details .main-image img {
  width: auto !important;
}

.product-details .product-quantity {
  width: 130px;
}

.product-details .product-quantity button {
  border-radius: 100% !important;
  min-width: 2rem !important;
  height: 2rem;
  padding: 3px;
  width: 2rem;
}

.product-details .product-quantity input {
  background: none;
}

.product-details .input-group {
  align-items: center;
}

.product-details .add-buy {
  background: #f5bb00;
  color: #2b2a28;
  font-family: "Mont Heavy";
  border-radius: 3px !important;
  padding: 10px 20px;
  white-space: nowrap;
}
.product-details .art-no{background: #2b2a28; color: #f5bb00; display: inline-block; padding: 8px 25px;  font-family: "Mont Heavy"; border-radius: 3px;}

.product-details h3 {
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  font-size: 28px;
  color: #f5bb00;
}

.product-details ul {
  padding-left: 15px;
}

.product-details ul li {
  color: #2b2a28;
  font-family: "Mont Regular";
  font-size: 18px;
}

.product-details table {
  margin-top: 30px;
  font-family: "Mont Regular";
}

.product-details table tr:nth-of-type(odd) {
  background: #f5bb00;
}

.product-details .add-to-cart-container {
  margin-bottom: 30px;
}

.product-details p {
  font-family: "Mont Regular";
  color: #2b2a28;font-size: 18px;
}

#baguetteBox-slider {
  background: #fff;
}

.modal .input-group {
  width: 130px;
}

.modal .input-group button {
  border-radius: 100% !important;
  min-width: 2rem !important;
  height: 2rem;
  padding: 3px;
  width: 2rem;
}

.modal .input-group input {
  border: 0;
  background: none;
}

.modal label {
  font-family: "Mont Regular";
  opacity: .5;
}

.modal input {
  font-family: "Mont Regular";
}

.modal .cart-button {
  background: #f5bb00;
  color: #2b2a28;
  font-family: "Mont Regular";
  width: 100%;
}

.related-product {
  padding: 70px 0;
  position: relative;
  background: #f1f3f5;
}

.related-product .box {
  text-align: center;
  position: relative;
}

.related-product .box::after {
  border-left: 1px solid #ccc;
  content: '';
  top: 20px;
  bottom: 20px;
  position: absolute;
  right: -12px;
}

.related-product h4 {
  color: #2b2a28;
  margin-bottom: 40px;
  font-size: 42px;
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  text-transform: uppercase;
}

.related-product .imgbox {
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
.related-product .imgbox::after{position: absolute; left: 20px;right: 20px;top: 20px;bottom: 20px;content: ''; background: #fff; z-index: -1;}

.related-product .imgbox img {
  padding: 20px;
  aspect-ratio: 1/1;
  object-fit: contain;
  height: 380px;
 
}

.related-product p {
  color: #2b2a28;
  font-size: 22px;
  font-family: "Mont Heavy";
}

.related-product .owl-nav {
  text-align: center;
  text-align: center;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: space-between;
  left: 0;
  right: 0;
}

.related-product .owl-nav button span {
  font-size: 70px;
}

.related-product .owl-nav button:hover span {
  color: #f5bb00;
}

.recently-viewed-products {
  position: relative;
  padding: 70px 0;
}

.recently-viewed-products .box {
  text-align: center;
  position: relative;
  padding: 20px;
}

.recently-viewed-products .box::after {
  border-left: 1px solid #ccc;
  content: '';
  top: 20px;
  bottom: 20px;
  position: absolute;
  right: -12px;
}

.recently-viewed-products .box img {
  padding: 20px;
  margin-bottom: 25px;
  aspect-ratio: 1/1;
  object-fit: contain;
  height: 280px;

}

.recently-viewed-products h4 {
  margin-bottom: 50px;
  color: #2b2a28;
  margin-bottom: 40px;
  font-size: 42px;
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  text-transform: uppercase;
}

.recently-viewed-products p {
  font-size: 22px;
  font-family: "Mont Heavy";
  padding: 10px;
  color: #2b2a28;
}

.recently-viewed-products .owl-dots {
  text-align: center;
}

.recently-viewed-products .owl-dots .owl-dot {
  height: 15px;
  width: 15px;
  background: #f5bb00;
  border-radius: 100%;
  margin: 2px;
  opacity: .5;
}

.recently-viewed-products .owl-dots .active {
  opacity: 1;
}

.addtocart {
  padding: 70px 0;
  position: relative;
}

.addtocart table {
  border: 0;
}

.addtocart table tr {
  margin-bottom: 3rem;
  border-bottom: 1px solid #f1f1fa;
  border-top: 1px solid #f1f1fa;
}

.addtocart table tr:first-child {
  border: 0;
}

.addtocart table tr:last-child {
  border: 0;
}

.addtocart table tr:nth-of-type(odd) {
  background: #f1f1f1;
}

.addtocart table tr td,
.addtocart table tr th {
  border-style: hidden;
  padding: 15px 10px;
  vertical-align: middle;
  color: #888;
  border: 0;
  font-family: "Mont Regular";
}

.addtocart table tr td a,
.addtocart table tr th a {
  color: #888;
}

.addtocart table tr td img,
.addtocart table tr th img {
  border: 1px solid #eee;
  border-radius: 8px;
}

.addtocart table tr th {
  background: #f5bb00;
  color: #2b2a28;
}

.addtocart table tr td {
  border-style: solid;
}

.addtocart .delete-cart {
  text-align: center;
}

.addtocart .product-quantity {
  width: 110px;
}

.addtocart .product-quantity button {
  border-radius: 100% !important;
  min-width: 2rem !important;
  height: 2rem;
  padding: 3px;
  width: 2rem;
}

.addtocart .product-quantity input {
  border: 0;
  background: none;
}

.addtocart .cart-button {
  background: #f5bb00;
  color: #2b2a28;
  margin: 25px 0;
  font-family: "Mont Regular";
}

.addtocart .send-enquiry {
  padding: 40px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  margin-top: 25px;
}

.addtocart .send-enquiry h2 {
  text-align: center;
  margin-bottom: 25px;
}

.addtocart .send-enquiry input {
  border: 1px solid #eee;
  margin-bottom: 15px;
}

.addtocart .send-enquiry label {
  margin-bottom: 5px;
  font-family: "Mont Regular";
  color: #888;
}

.addtocart .send-enquiry textarea {
  border: 1px solid #eee;
}

.addtocart .btn-warning {
  background: #f5bb00 !important;
  color: #2b2a28;
  border: 0;
  border-radius: 3px;
  font-family: "Mont Heavy";
}

/* #baguetteBox-overlay .full-image {
  background: #fff;
} */

.inner-content {
  padding: 50px 0;
  position: relative;
}

.inner-content .box {
  position: relative;
  border-bottom: 1px solid #f5bb00;
}

.inner-content .box.p-3{
  border: 0;
  display: flex;
  flex-direction: column-reverse;
}
.inner-content .box.p-3::after {
display: none;
}
.inner-content .box.p-3 img{
  border: 7px solid #f5bb00;
}
.inner-content .box.p-3 p{background: #f5bb00; margin: 0; opacity: 1; padding-top: 7px;}

.inner-content .box::after {
  border-left: 1px solid #f5bb00;
  content: '';
  top: 20px;
  bottom: 20px;
  position: absolute;
  right: -12px;
}

.inner-content .box img {
  margin-bottom: 15px;
}

.inner-content .box p {
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  color: #2b2a28;
}

.inner-content h2 {
  font-family: "Mont Heavy";
  /* font-weight: 600; */
  font-size: 24px;
  color: #f5bb00;
}

.inner-content h3 {
  font-size: 48px;
  /* font-weight: 600; */
  font-family: "Mont Heavy";
}

.inner-content p {
  font-family: "Mont Regular";
  font-weight: 400;
  font-size: 18px;
  /* opacity: .8; */
}

.inner-content .greyscale img {
  filter: brightness(0);
}

.latest-news-inner {
  padding: 70px 0;
  position: relative;
}

.latest-news-inner .box {
  position: relative;
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .latest-news-inner .img-box {
    width: 20%;
  }

  .latest-news-inner .text-box {
    width: 75%;
  }
}

.latest-news-inner h3 {
  font-size: 24px;
  text-align: center;
  font-family: "Mont SemiBold";
}

.latest-news-inner p {
  font-family: "Mont Regular";
  /* opacity: .6; */
  font-size: 18px;
}

.latest-news-inner span {
  color: #f5bb00;
}

.latest-news-inner .stretched-link {
  font-family: "Mont Heavy";
  color: #2b2a28;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.latest-news-inner img {
  margin-bottom: 20px;
}

.latest-news-inner .news-images {
  height: 350px;
  background-position: 50% 50% !important;
  background-size: cover !important;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.17);
}

.pagination .page-item.active .page-link {
  background: #f5bb00;
  border-color: #f5bb00;
}

.pagination .page-link {
  color: #2b2a28;
}

.career-inner {
  padding: 70px 0;
  position: relative;
}

.career-inner h2 {
  font-family: "Mont Heavy";
  font-size: 42px !important;
  /* font-weight: 700; */
}

.career-inner .accordion-button.collapsed {
  font-family: "Mont Regular";
}

.career-inner .accordion-button:focus {
  background-color: #ffecc1;
  box-shadow: none;
  font-family: "Mont Regular";
}

.career-inner .accordion-body ul {
  padding-left: 15px;
}

.career-inner .accordion-body ul li {
  opacity: .7;
  font-weight: 300;
  font-family: "Mont Regular";
}

.career-inner .accordion-body .btn {
  background: #f5bb00;
  color: #2b2a28;
  font-family: "Mont Heavy";
  text-transform: uppercase;
}

.career-inner p {
  font-family: "Mont Regular";
  color: #2b2a28;
  font-size: 18px;
}

.career-inner p a {
  color: #2b2a28;
}

.career-inner input {
  font-family: "Mont Regular";
}

#btn_save {
  background: #f5bb00;
  color: #2b2a28;
  font-family: "Mont Heavy";
  text-transform: uppercase;
}

.navbar_header nav .menu li:hover .mega-menu {
  display: block;
}

/* .new-porduct .item img{height: 700px; object-fit: contain;} */

@media (min-width: 1501px) and (max-width: 1700px)
 {
  /* .new-porduct .item img{height: 550px; object-fit: contain;} */
  .add-to-cart-container .d-flex.pt-4.pb-4.add-to-cart{flex-wrap: wrap;}
  .product-details .product-quantity{width: 250px;}
  .product-details .add-buy{margin-top: 5px;}
 }
@media (min-width: 1201px) and (max-width: 1500px) {
  .navbar_header .menu li a {
    padding: 9px 20px !important;
    font-size: 14px !important;
    padding-right: 20px !important;
  }

  .navbar_header .menu li ul a {
    padding: 8px 15px !important;
  }

  .menu-link[aria-haspopup="true"]::after {
    right: 5px;
  }
  .navbar_header .nav .row{align-items:baseline !important;}
  .navbar_header .menu li a{white-space: nowrap;}
  .product-inner .box{padding: 15px ;}
  .product-inner .imgbox img{height: 280px;}
  .product-inner .d-sm-flex h2{font-size: 28px; line-height: 30px;}
  .product-inner .col-xl-3{margin-top: 0; margin-bottom: 30px;}
  .product .box .imgbox img{height: 374px;}
  /* .new-porduct .item img{height: 550px; object-fit: contain;} */
  .add-to-cart-container .d-flex.pt-4.pb-4.add-to-cart{flex-wrap: wrap;}
  .product-details .product-quantity{width: 250px;}
  .product-details .add-buy{margin-top: 5px; width: 250px;} 
  .industries-we-serve .col-xl-2{width: 20%;}
  .our-comitment-for-socity .box img{max-width: 100% !important; width: auto !important;}
  .list-side .toggle-button-icon .bi{position: absolute; right: 5px;}
  .side-menu li a{font-size: 22px;}
  .new-porduct .item p {
    font-size: 18px;
  }

  .product-inner .side-menu{padding: 10px;}
  #product_images{height: 700px;}

}

@media (min-width: 992px) and (max-width: 1200px) {
  .navbar_header .menu li a {
    padding: 9px 5px !important;
    font-size: 14px !important;
    padding-right: 20px !important;
  }

  .navbar_header .menu li ul a {
    padding: 8px 20px !important;
  }

  .menu-link[aria-haspopup="true"]::after {
    right: 5px;
  }
  .product-details .xzoom-thumbs .list-group-item img{width: 60px !important;}
  .product-details .add-buy{font-size: 14px;padding: 10px 13px;}
  .product-details .product-img{margin-right: 0; position: sticky; top: 150px;}

  .new-porduct .item img{height: auto; object-fit: contain;}
  .product .box .imgbox img{height: 260px;}
  .world-map h2{font-size: 48px;}
  .add-to-cart-container .d-flex.pt-4.pb-4.add-to-cart{flex-wrap: wrap;}
  .product-details .product-quantity{width: 250px;}
  .product-details .add-buy{margin-top: 5px; width: 250px;} 
  .product-inner .side-menu{margin-left: 5px !important; }
  .side-menu li a{font-size: 22px;}
  .product-inner .side-menu{padding-left: 10px;padding-right: 10px;}
  .list-side .toggle-button-icon .bi{position: absolute; right: 5px;}
}

@media (max-width: 1200px) {
  .navbar_header {
    position: relative;
    /* background: #f5bb00; */
  }

  .banner::after {
    display: none;
  }

  body,
  html {
    overflow-x: hidden;
  }

  .banner .carousel-item {
    height: 500px;
  }

  .banner .carousel-caption p {
    font-size: 24px;
    line-height: 24px;
  }

  .banner .carousel-caption h2 {
    font-size: 40px;
    line-height: 40px;
  }

  .banner .carousel-caption h3 {
    font-size: 70px;
    line-height: 70px;
  }

  .main-menu-btn {
    background: #f5bb00;
  }

  .navbar_header .sm-simple a,
  .navbar_header .sm-simple a:hover,
  .navbar_header .sm-simple a:focus,
  .navbar_header .sm-simple a:active,
  .navbar_header .sm-simple a.highlighted {
    padding: 12px 20px;
  }

  .main-menu-btn {
    top: 5px;
  }

  .quality-policy h2 {
    margin-top: 40px;
  }

  .close_menu-bar {
    position: absolute;
    left: -100px;
    z-index: 9999;
    cursor: pointer;
    background: #2b2a28;
    border-radius: 100%;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
  }

  .close_menu-bar:hover {
    color: #f5bb00;
  }
  .navbar_header .mega-menu ul{padding: 0;}
}

@media (max-width: 1200px) {
  .menu-bar {
    width: 300px !important;
    overflow-y: auto;
    box-shadow: 0 0 15px -5px #555;
    position: fixed;
    background: #f5bb00 !important;
    top: 0;
    bottom: 0;
    z-index: 9;
    left: -310px;
    padding-left: 15px;
  }

  .menu-bar li a {
    color: #2b2a28 !important;
  }

  .navbar_header .menu li a {
    color: #2b2a28 !important;
    display: block;
  }

  .navbar_header .menu li a::after {
    filter: brightness(0);
  }

  .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]~ul {
    max-height: auto;
  }

  .position {
    position: static !important;
  }

  .position .mega-menu--multiLevel>li {
    width: 100% !important;
  }

  .mobile-menu-trigger {
    top: 10px;
    color: #2b2a28;
  }

  .mobile-menu-trigger .bi {
    font-size: 30px !important;
  }

  .navbar_header .menu li ul li a img {
    width: 25px;
    margin-right: 8px;
  }

  .navbar_header .menu li ul li .menu-list {
    border-left: 0;
    border-right: 0;
  }

  .product-inner .box {
    padding: 25px 5px;
  }

  .product-inner .d-sm-flex h2 {
    font-size: 20px;
  }

  .new-porduct h2,.product .title h3 {
    font-size: 48px;
  }

  .quality-policy h2 {
    margin-top: 0;
  }

  .industries-we-serve a {
    margin-bottom: 50px;
    display: inline-block;
  }

  .about-us h3,
  .industries-we-serve h4,
  .our-comitment-for-socity h3 {
    font-size: 36px;
  }

  .banner .carousel-caption {
    bottom: 20px;
  }

  .new-porduct .item p {
    font-size: 18px;
  }
  .searchbar.text-dark.d-flex.justify-content-end.ms-5.mb-3{ margin: 0 !important; margin-right: 30px !important;}
  .menu-bar{justify-content: start;}
  .navbar_header .mega-menu{padding: 0;}
  .navbar_header .menu-banner-image-container{display: none;}
}

@media (max-width: 991px) {
  .product-details .product-img {
    margin: 0;
  }
  .product .box .imgbox img{height: 220px;}
  .product-inner .box {
    padding: 10px;
  }

  .product-inner .box .art-no {
    top: 0;
  }

  .product p {
    line-height: auto !important;
  }

  .industries-we-serve a {
    margin-bottom: 25px;
    display: inline-block;
  }

  .our-comitment-for-socity h2 {
    margin-top: 25px;
  }

  .participations .owl-dots {
    margin-top: 0px;
  }
  .searchbar form{width: 200px !important;}
  .product-details .xzoom-thumbs .list-group-item img{width: 60px !important;}
  .related-product .imgbox img,.recently-viewed-products .box img{height: 250px; padding: 10px;}
  .recently-viewed-products .box{padding: 5px;}
  .product-details .product-title{margin-top: 50px;}
  .footer .footer-background{transform: scale(1)}
  .inner-banner .d-sm-flex.justify-content-between.align-items-center{ justify-content: start !important; display: block !important; }
  
}
.searchInputIcon{display: none;}
form .searchInputIcon {display: block;}


@media (max-width: 767px) {
  .searchbar.text-dark.d-flex.justify-content-end.ms-5.mb-3{margin-right: 40px !important;}
  .mobile-menu-trigger{top: 0;}
.searchInputWrapper form  {display: none !important;}
.searchInputIcon{display: block;}

  .banner .carousel-caption h1{font-size:48px !important; line-height: normal;}
  body,
  html {
    overflow-x: hidden;
  }

  .searchbar {
    margin-left: 0 !important;
  }

  .about-us h3,
  .product h3,
  .quality-policy h3 {
    font-size: 36px;
  }

  .banner .carousel-caption {
    left: 15%;
  }

  .banner .carousel-caption h2 {
    font-size: 30px;
  }

  .banner .carousel-caption h3 {
    font-size: 36px;
    line-height: 42px;
  }

  .searchbar {
    margin-left: 0 !important;
    /* right: -30px; */
    position: relative;
  }
 

  .inner-banner h1 {
    padding-left: 0;
  }

  .addtocart table tr td {
    white-space: nowrap;
  }

  .quality-policy .d-flex p {
    width: 100%;
  }

  .quality-policy .d-flex.justify-content-between.mt-4 {
    display: block !important;
  }

  .industries-we-serve a {
    margin-bottom: 20px;
    display: inline-block;
  }

  .participations .box {
    margin-bottom: 15px;
  }

  .navbar_header {
    padding: 10px 0;
  }

  .product p {
    min-height: auto;
  }

  .product .box {
    margin-bottom: 0;
  }

  .industries-we-serve .industries-box {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .our-brand .box img {
    width: 250px;
  }

  .product-details .xzoom-thumbs {
    display: flex;
  }

  .navbar_header .menu li a {
    font-size: 16px !important;
  }

  .navbar_header .menu li a img {
    width: 25px;
    margin-right: 5px;
  }

  .product-inner {
    padding: 50px 0;
  }

  .product-inner .d-sm-flex {
    display: flex;
  }

  .banner .carousel-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .banner .carousel-caption img {
    width: 80px;
    
  }

  .banner .carousel-caption h2 {
    font-size: 24px;
    line-height: 24px;
  }

  .product-inner .d-sm-flex h2 {
    min-height: auto;
  }

  .related-product h4,
  .recently-viewed-products h4,
  .new-porduct h2,
  .product .title h3,
  .world-map h2,
  .participations h3,
  .clients h4 {
    font-size: 36px;
  }

  .product .title p {
    font-size: 18px;
    line-height: 22px;
  }

  .quality-policy h2 {
    margin-top: 25px;
  }

  .our-comitment-for-socity .box {
    padding: 20px;
  }

  .clients {
    padding: 50px 0;
  }
  .add-to-cart-container .d-flex.pt-4.pb-4.add-to-cart{flex-wrap: wrap;}
  .product-details .product-quantity{width: 250px;}
  .product-details .add-buy{margin-top: 5px; width: 250px;} 
}

@media (max-width: 500px) {

  body,
  html {
    overflow-x: hidden;
  }

  .banner .carousel-item {
    height: 400px;
  }

  .nav-brand {
    width: 150px;
  }

  .participations .col-lg-8 .box {
    width: 100%;
  }

  #upcoming_events h2 {
    margin-top: 30px;
  }

  .carousel-indicators {
    margin-bottom: 0;
  }

  .about-us h3,
  .product h3,
  .quality-policy h3 {
    font-size: 30px;
  }

  .product-details .input-group {
    flex-wrap: nowrap;
    width: 100%;
  }

  .product-details .add-buy {
    white-space: nowrap;
   
  }

  .d-flex.pt-4.pb-4.add-to-cart {
    display: block !important;
  }

  .product-details .product-quantity,
  .product-details .add-buy {
    margin-bottom: 15px;
    width: 100%;
   
  }
/* 
  .product-details .product-title {
    margin: 12px 0;
  } */
/* 
  body {
    margin-bottom: 50px;
  } */

  .media-icon {
    bottom: 0 !important;
    width:45px;
    display: flex;
    left: 0;
    justify-content: space-between;
  }

  /* .media-icon a {
    width: 100%;
    border-left: 1px solid #2b2a28;
  } */

  .participations .content{font-size: 16px; padding: 15px;}

  .media-icon a:first-child {
    border: 0;
  }
  
}