.header .top-bar {
  background-color: #c90008;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}
.header .top-bar span {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.header .nav-bar {
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header .nav-bar .logo img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}
.header .nav-bar .navigation ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.header .nav-bar .navigation ul li {
  list-style: none;
  display: inline-block;
  margin: 0 7px;
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}
.header .nav-bar .navigation ul li a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.9);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.header .nav-bar .navigation ul li a:hover {
  color: #c90008;
}
.header .nav-bar .navigation ul li.active a {
  color: #c90008;
}
.header .nav-bar .navigation ul li.has-sub {
  position: relative;
}
.header .nav-bar .navigation ul li.has-sub .sub-level {
  position: absolute;
  z-index: 77;
  left: 0;
  top: calc(100% + 20px);
  background-color: #fff;
  min-width: 520px;
  padding: 10px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transform: scaleY(0);
  transform-origin: top left;
  opacity: 0;
}
.header .nav-bar .navigation ul li.has-sub .sub-level .sub-menu-item {
  margin: 10px 0;
  display: block;
}
.header .nav-bar .navigation ul li.has-sub .sub-level .sub-menu-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .nav-bar .navigation ul li.has-sub .sub-level .sub-menu-item img {
  height: 35px;
  width: 35px;
}
.header .nav-bar .navigation ul li.has-sub .sub-level .sub-menu-item h6 {
  font-style: 0.9em;
  color: #000;
}
.header .nav-bar .navigation ul li.has-sub:hover .sub-level {
  transform: scaleY(1);
  opacity: 1;
}
.header .nav-bar .right-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .nav-bar .right-area .cart {
  margin-right: 20px;
}
.header .nav-bar .right-area .cart i {
  color: #c90008;
}
.header .nav-bar .right-area .cart sup {
  color: #c90008;
}
.header .nav-bar .right-area .search {
  background-color: #cccccc;
  border-radius: 100px;
  padding: 4px 9px;
}
.header .nav-bar .right-area .search input {
  border: 0;
  outline: 0;
  color: #000;
  background-color: transparent;
  font-size: 14px;
}
.header .nav-bar .right-area .search button {
  border: 0;
  outline: 0;
  color: #111;
  background-color: transparent;
}

.showonmobile {
  display: none;
}

.mobile-menu {
  text-align: right;
}
.mobile-menu span {
  font-size: 36px;
  color: #fff;
}
.mobile-menu .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align: left;
}
.mobile-menu .sidenav a {
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  transition: 0.3s;
  color: #fff;
  text-decoration: none;
  padding-left: 30px;
  padding-right: 30px;
}
.mobile-menu .sidenav a:hover {
  color: #c90008;
}
.mobile-menu .sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 36px;
  margin-left: 50px;
}

.banner-slider {
  padding: 0;
}
.banner-slider .carousel-item img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}

.home-cat .cat-item {
  margin: 15px 0;
  position: relative;
  overflow: hidden;
}
.home-cat .cat-item img {
  width: 100%;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
}
.home-cat .cat-item .overlay {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.home-cat .cat-item .overlay h4 {
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px;
  transition: all 0.5s;
  width: 100%;
  display: block;
}
.home-cat .cat-item .overlay span {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin: 10px 0;
}
.home-cat .cat-item .overlay p {
  font-size: 20px;
  color: #fff;
  line-height: 24px;
}
.home-cat .cat-item:hover img {
  transform: scale(1.1);
}
.home-cat .cat-item:hover .overlay {
  background-color: rgba(201, 0, 8, 0.6);
}
.home-cat .cat-item:hover .overlay h4 {
  background-color: #c90008;
}

.feature-product-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.feature-product-section .heading {
  padding-bottom: 30px;
}
.feature-product-section .heading h4 {
  font-size: 48px;
  line-height: 48px;
  color: #606468;
  font-weight: 700;
}

.product-style {
  margin: 15px 0;
}
.product-style .img {
  overflow: hidden;
}
.product-style .img img {
  width: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.product-style .detail {
	text-align: center;
	margin-top: 10px;
	
}
.product-style .detail h4 {
  font-size: 1.125rem;
  letter-spacing: -0.56px;
  margin-bottom: 0.75rem;
  color: #606468;
  font-weight: bold;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.product-style .detail p {
  font-size: 1rem;
  margin: 0;
  color: #606468;
}
.product-style .detail a {
  color: #606468;
  font-variation-settings: "wght" 700;
  letter-spacing: -0.32px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
.product-style:hover .img img {
  transform: scale(1.1);
}
.product-style:hover .detail h4 {
  color: #c90008;
}

.product-slider .owl-dots {
  text-align: left;
  max-width: 1320px;
  margin: auto;
}
.product-slider .owl-dots .owl-dot span {
  height: 20px;
  width: 20px;
  background-color: transparent !important;
  border: solid 1px #b0afaf;
}
.product-slider .owl-dots .owl-dot.active span {
  background-color: #b0afaf !important;
}

.second-cats-section {
  background-attachment: fixed;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}
.second-cats-section .cat-heading h4 {
  font-size: 48px;
  line-height: 48px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.second-cats-section .cat-heading p {
  font-size: 18px;
  color: #fff;
  line-height: 28px;
}
.second-cats-section .top-cat {
  background-color: #000;
  margin: 20px 0;
}
.second-cats-section .top-cat .img {
  overflow: hidden;
  background-color: #fff;
}
.second-cats-section .top-cat .img img {
  width: 100%;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  max-height: 500px;
  object-fit: contain;
}
.second-cats-section .top-cat .detail {
  text-align: center;
  padding-bottom: 20px;
}
.second-cats-section .top-cat .detail h4 {
  font-size: 26px;
  font-weight: bold;
  color: white;
  margin: 0;
  padding: 15px 0;
}
.second-cats-section .top-cat .detail a {
  font-size: 18px;
  font-weight: bold;
  width: 50%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  background-color: #c90008;
  color: #000;
  text-decoration: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.second-cats-section .top-cat .detail a:hover {
  background-color: #fff;
  color: #000;
}
.second-cats-section .top-cat:hover .img img {
  transform: scale(1.1);
}

.quality-excel {
  padding-top: 50px;
  padding-bottom: 50px;
}
.quality-excel .heading {
  margin-bottom: 30px;
  text-align: center;
}
.quality-excel .heading h4 {
  font-size: 48px;
  line-height: 48px;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
}
.quality-excel .heading p {
  font-size: 18px;
  color: #000;
  line-height: 28px;
}
.quality-excel .box-width-icon {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px 0;
  text-align: justify;
}
.quality-excel .box-width-icon .icon {
  width: 60px;
  text-align: center;
}
.quality-excel .box-width-icon .icon img {
  height: 34px;
  width: 34px;
  object-fit: contain;
}
.quality-excel .box-width-icon .content {
  width: calc(100% - 60px);
  padding-left: 10px;
}
.quality-excel .box-width-icon .content h5 {
  font-size: 18px;
  color: #0a0a0a;
  text-transform: uppercase;
  font-weight: 700;
}
.quality-excel .box-width-icon .content p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 28px;
}

.poster {
  padding: 0;
  background-color: #0f0f0f;
}
.poster img {
  width: 100%;
}

.certifications {
  position: relative;
  margin: 10px 0;
}
.certifications:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: #c90008;
}
.certifications .certificate-icon ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.certifications .certificate-icon ul li {
  width: calc(100% / 3);
  overflow: hidden;
  list-style: none;
  text-align: center;
}
.certifications .certificate-icon ul li img {
  height: 198px;
  object-fit: contain;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.certifications .certificate-icon ul li:hover img {
  transform: scale(1.1);
}
.certifications .certificate-message {
  background-color: #c90008;
  text-align: center;
  padding: 50px 30px;
}
.certifications .certificate-message h4 {
  font-size: 44px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.certifications .certificate-message p {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
}

.footer {
  background-color: #eee;
  padding: 50px 0 10px 0;
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  padding-bottom: 18px;
  position: relative;
  text-transform: uppercase;
}
.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 30px;
  background-color: rgba(0, 0, 0, 0.3);
}
.footer .footer-address ul {
  margin: 0;
  padding: 15px 0;
}
.footer .footer-address ul li {
  list-style: none;
  display: block;
  font-size: 16px;
  color: #000;
  line-height: 26px;
  font-weight: 700;
  padding: 3px 0;
}
.footer .footer-address ul li a {
  text-decoration: none;
  color: #000;
}
.footer .footer-address ul#social {
  margin: 0;
  padding: 0;
}
.footer .footer-address ul#social li {
  list-style: none;
  display: inline-block;
}
.footer .footer-address ul#social li a {
  text-decoration: none;
  color: #fff;
  background-color: #c90008;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 36px;
  border-radius: 100px;
  text-align: center;
  font-size: 18px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.footer .footer-address ul#social li a:hover {
  background-color: #c90008 !important;
  color: #000;
}
.footer .footer-address ul#social li:nth-child(1) a {
  background-color: #3b5998;
}
.footer .footer-address ul#social li:nth-child(2) a {
  background-color: #e95950;
}
.footer .footer-address ul#social li:nth-child(3) a {
  background-color: #55acee;
}
.footer .footer-menu ul {
  margin: 0;
  padding: 15px 0;
}
.footer .footer-menu ul li {
  list-style: none;
}
.footer .footer-menu ul li a {
  text-decoration: none;
  color: #000;
  padding: 6px 0;
  display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  border-bottom: solid 1px rgba(255, 255, 255, 0.08);
}
.footer .footer-menu ul li a:hover {
  color: #c90008;
  border-bottom: solid 1px #c90008;
}
.footer .footer-newsletter p {
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
.footer .footer-newsletter input {
  width: 100%;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.09);
  color: #000;
  border-radius: 50px;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
}
.footer .footer-newsletter button {
  width: 102px;
  height: 39px;
  background-color: #c90008;
  text-align: center;
  border-radius: 50px;
  color: #000;
  text-align: center;
  line-height: 39px;
  text-transform: uppercase;
  border: 0;
  outline: 0;
  font-weight: bold;
  margin-top: 20px;
}
.footer .copyright {
  border-top: solid 1px #474747;
  margin-top: 50px;
  text-align: center;
  padding-top: 20px;
}
.footer .copyright p {
  font-size: 13px;
  line-height: 14px;
  color: #000;

  font-weight: 400;
}
.footer .copyright p a {
  text-decoration: none;
  color: #c90008;
}

.product-large-page {
  padding-top: 50px;
  padding-bottom: 50px;
}
.product-large-page .breadcrumb ul {
  margin: 0;
  padding: 0;
}
.product-large-page .breadcrumb ul li {
  list-style: none;
  display: inline-block;
  font-size: 11px;
  color: #555;
}
.product-large-page .breadcrumb ul li a {
  text-decoration: none;
  color: #555;
  padding-right: 10px;
}
.product-large-page .product-large ul {
  margin: 0;
  padding: 0;
}
.product-large-page .product-large ul li {
  list-style: none;
}
.product-large-page .product-large ul li img {
  width: 100%;
  object-fit: contain;
  height: 500px;
}
.product-large-page .lSSlideOuter.vertical .lSGallery {
  right: inherit;
  left: 0;
}
.product-large-page .product-detail span {
  font-size: 15px;
  color: #444;
}
.product-large-page .product-detail h4 {
  font-size: 30px;
  color: #000;
}
.product-large-page .product-detail h6 {
  font-size: 14px;
  color: #000;
  font-weight: bold;
}
.product-large-page .product-detail select {
  font-size: 14px;
  color: #000;
  width: 100%;
  padding: 10px;
  max-width: 200px;
}
.product-large-page .product-detail ul.boxes {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 10px;
  padding-top: 15px;
}
.product-large-page .product-detail ul.boxes li {
  list-style: none;
  font-size: 12px;
  color: #444;
  padding: 5px 7px;
  border: solid 1px #444;
}
.product-large-page .product-detail ul.boxes li.active {
  background-color: #444;
  color: #fff;
}
.product-large-page .product-detail .qty-cart {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 20px;
  padding-top: 20px;
}
.product-large-page .product-detail .qty-cart .qty {
  border: solid 2px #444;
  display: flex;
  width: 184px;
}
.product-large-page .product-detail .qty-cart .qty .wrap {
  display: flex;
}
.product-large-page .product-detail .qty-cart .qty button {
  border: 0;
  outline: 0;
  width: 40px;
  height: 40px;
  line-height: 0;
  background-color: transparent;
  font-size: 25px;
}
.product-large-page .product-detail .qty-cart .qty input {
  text-align: center;
  border: 0;
  outline: 0;
  width: 100px;
  height: 40px;
}
.product-large-page .product-detail .qty-cart .cart {
  width: calc(100% - 184px);
}
.product-large-page .product-detail .qty-cart .cart a {
  height: 40px;
  width: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  background-color: #444;
  display: block;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.product-large-page .product-detail .social-share {
  padding-top: 30px;
}
.product-large-page .product-detail .social-share ul {
  margin: 0;
  padding: 0;
}
.product-large-page .product-detail .social-share ul li {
  list-style: none;
  display: inline-block;
}
.product-large-page .product-detail .social-share ul li a {
  font-size: 15px;
  color: #fff;
  height: 35px;
  line-height: 35px;
  width: 35px;
  text-decoration: none;
  background-color: #000;
  display: block;
  text-align: center;
  border-radius: 100px;
}

.product-details {
  background-color: #f8f5ef;
  padding-top: 50px;
  padding-bottom: 50px;
}
.product-details .accordion .accordion-item {
  border: 0 !important;
  background-color: transparent;
}
.product-details .accordion .accordion-item .accordion-header button {
  font-size: 32px;
  font-weight: 900;
  color: #000;
  outline: none;
  border: 0;
  background-color: transparent;
  box-shadow: none;
}
.product-details .certi ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.product-details .certi ul li {
  list-style: none;
  display: inline-block;
  text-align: center;
  padding: 10px;
}
.product-details .certi ul li a {
  color: #000;
  text-decoration: none;
}
.product-details .certi ul li a i {
  font-size: 50px;
}

@media only screen and (max-width: 1300px) {
  .certifications .certificate-icon ul li img {
    max-height: 132px;
  }
}
@media only screen and (max-width: 1129px) {
  .header .nav-bar .right-area .search {
    width: 100%;
  }
  .header .nav-bar .right-area .search input {
    width: 80%;
  }
}
@media only screen and (max-width: 1017px) {
  .hideonmobile {
    display: none;
  }

  .showonmobile {
    display: block;
  }

  .home-cat .cat-item .overlay h4 {
    font-size: 26px;
  }
  .home-cat .cat-item .overlay span {
    font-size: 16px;
  }
  .home-cat .cat-item .overlay p {
    font-size: 15px;
  }

  .feature-product-section .heading h4 {
    font-size: 38px;
    line-height: 38px;
  }

  .second-cats-section .cat-heading h4 {
    font-size: 38px;
    line-height: 38px;
  }

  .quality-excel .heading h4 {
    font-size: 38px;
    line-height: 38px;
  }

  .certifications .certificate-message h4 {
    font-size: 38px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 992px) {
  .header .nav-bar .right-area {
    display: none;
  }

  .certifications .certificate-icon ul li img {
    max-height: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .cd-sm-none {
    display: none;
  }

  .certifications:after {
    display: none;
  }

  .feature-product-section .heading h4 {
    font-size: 30px;
    line-height: 30px;
  }

  .second-cats-section .cat-heading h4 {
    font-size: 30px;
    line-height: 30px;
  }

  .quality-excel .heading h4 {
    font-size: 30px;
    line-height: 30px;
  }

  .certifications .certificate-message h4 {
    font-size: 30px;
    line-height: 30px;
  }

  .certifications .certificate-message p {
    font-size: 16px;
  }
}

/*# sourceMappingURL=custom.css.map */
