/**
*
* Testing
*
**/
*,
td {
  font-family: "Outfit", sans-serif;
}

section {
  overflow: hidden;
}

.text {
  color: #c40000;
}

.main-nav {
  background: linear-gradient(90deg, #383838 50%, #c40000 50%);
  border-bottom: 5px inset #c40000;
}
@media (max-width: 450px) {
  .main-nav {
    border-bottom: 0;
  }
}

.bg_red {
  background: #c40000 !important;
}

.bg_white {
  background: white !important;
}

p,
li {
  color: #787878;
}

a {
  text-decoration: none !important;
}

.middle {
  justify-content: center;
  align-items: center;
  display: flex;
}

.sub-nav {
  background: linear-gradient(155deg, white 30%, #c40000 30%);
}
.sub-nav .icon-box {
  background-color: #383838;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .sub-nav {
    display: none;
  }
}

.title {
  background: white;
  display: inline-block;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.title span {
  color: #c40000;
}

.title-line {
  padding: 0.3px;
  background: black;
  opacity: 1;
  margin-bottom: -23px;
}

.black-nav {
  padding: 8px 20px 8px 10px;
  background: #383838;
  border-radius: 0 50px 50px 0;
}
@media (max-width: 768px) {
  .black-nav {
    display: none;
  }
}
.black-nav .nav-link {
  font-weight: 300;
  padding: 0 44px 0 0 !important;
}
.black-nav .social i {
  background: white;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 30px;
  margin-left: 5px;
  color: #383838;
}
.black-nav .social i:hover {
  background-color: #c40000;
  color: white;
}

.banner .owl-nav {
  margin: 0;
}
.banner .owl-prev {
  position: absolute;
  left: -40px;
  top: calc(50% - 15px);
  opacity: 0;
  transition: 0.2s;
}
.banner .owl-prev:hover {
  background: #c40000 !important;
  color: white;
}
.banner .owl-next {
  position: absolute;
  right: -40px;
  top: calc(50% - 15px);
  border-radius: 50%;
  opacity: 0;
  transition: 0.2s;
}
.banner .owl-next:hover {
  background: #c40000 !important;
  color: white;
}
.banner:hover .owl-prev {
  opacity: 1;
}
.banner:hover .owl-next {
  opacity: 1;
}

.testimonial {
  position: relative;
}
.testimonial .owl-prev {
  position: absolute;
  left: -40px;
  top: calc(50% - 15px);
  background: #383838 !important;
  color: white !important;
  border-radius: 30px !important;
  width: 27px !important;
  height: 27px !important;
  opacity: 0;
  transition: 0.2s;
}
.testimonial .owl-next {
  position: absolute;
  right: -40px;
  top: calc(50% - 15px);
  border-radius: 50%;
  background: #383838 !important;
  color: white !important;
  border-radius: 30px !important;
  width: 27px !important;
  height: 27px !important;
  opacity: 0;
  transition: 0.2s;
}
.testimonial:hover .owl-prev {
  opacity: 1;
}
.testimonial:hover .owl-next {
  opacity: 1;
}

.single_product_page {
  position: relative;
}
.single_product_page .owl-prev {
  position: absolute;
  left: -18px;
  top: calc(50% - 15px);
  background: #383838 !important;
  color: white !important;
  border-radius: 30px !important;
  width: 27px !important;
  height: 27px !important;
  opacity: 1;
  transition: 0.2s;
}
.single_product_page .owl-next {
  position: absolute;
  right: -18px;
  top: calc(50% - 15px);
  border-radius: 50%;
  background: #383838 !important;
  color: white !important;
  border-radius: 30px !important;
  width: 27px !important;
  height: 27px !important;
  opacity: 1;
  transition: 0.2s;
}

@media (max-width: 450px) {
  .banner .owl-prev {
    left: -5px;
  }
  .banner .owl-next {
    right: -5px;
  }
  .banner:hover .owl-prev {
    opacity: 1;
  }
  .banner:hover .owl-next {
    opacity: 1;
  }
  .testimonial {
    position: relative;
  }
  .testimonial .owl-prev {
    left: -12px;
  }
  .testimonial .owl-next {
    right: -12px;
  }
  .testimonial:hover .owl-prev {
    opacity: 1;
  }
  .testimonial:hover .owl-next {
    opacity: 1;
  }
}
.footer .social i {
  background: white;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 30px;
  margin-left: 5px;
  color: #383838;
}
.footer .social i:hover {
  background-color: #c40000;
  color: white;
}
.footer img {
  background: white;
  height: 120px;
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
  border-radius: 50%;
}

.cat_section .box {
  position: relative;
  box-shadow: 0 5px 30px -15px gray;
}
.cat_section .box::after {
  content: "";
  position: absolute;
  width: 94%;
  height: 88%;
  margin: 3%;
  top: 0;
  left: 0;
  border: 1px solid #383838;
  z-index: 1;
}
.cat_section .box a {
  position: relative;
  z-index: 2;
}

.custom_button {
  background: #c40000;
  color: white;
  text-decoration: none;
  padding: 7px 15px;
  transition: 0.3s;
}
.custom_button:hover {
  color: white;
  background: #383838;
}

.collection .box {
  box-shadow: 0 5px 30px -15px gray;
  border: 1px solid rgb(227, 227, 227);
}
.collection .box img {
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s;
}
.collection .box:hover img {
  transform: scale(1.1);
}
@media (max-width: 450px) {
  .collection .box img {
    height: 130px;
    -o-object-fit: contain;
       object-fit: contain;
    transition: 0.2s;
  }
  .collection .box h4 {
    font-size: 16px;
  }
}

.testimonial .box {
  border: 1px solid black;
}

.footer {
  background-color: black;
  color: white !important;
}

#mobile {
  display: none;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
#mobile #toggleButton {
  height: 50px;
  width: 50px;
  border: 2px solid transparent;
  background: transparent;
  line-height: 60px;
}
#mobile #toggleButton i {
  font-size: 28px;
  color: white;
}
#mobile #menu {
  position: absolute;
  top: 0;
  left: -100%; /* Hidden initially */
  width: 80%;
  height: 100vh;
  color: white;
  background: #383838;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000000000;
}
#mobile #menu ul {
  list-style-type: none;
  padding: 0;
}
#mobile #menu ul li {
  padding: 1px 32px;
}
#mobile #menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
}
#mobile #menu ul li a:hover {
  background-color: #575757;
}
#mobile #closeButton {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  #mobile {
    display: inline-block;
  }
}
#mobile .social i {
  height: 30px;
  width: 30px;
  background: white;
  text-align: center;
  line-height: 30px;
  margin-left: 3px;
  border-radius: 50%;
}
#mobile .social a {
  color: black;
}

.dropdown-container {
  position: relative;
}

.selected-values {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  background-color: #f9f9f9;
}

.dropdown-menu.show {
  display: block;
  max-height: 150px;
  overflow-y: auto;
}

.header {
  background-size: cover;
  background-position: center;
}

.sidebar input {
  border-radius: 0;
}
.sidebar button {
  border-radius: 0;
  background: #c40000;
  border-color: #c40000;
}
.sidebar button:hover {
  background: #383838;
  border-color: #383838;
}

.btn-close {
  position: absolute;
  left: 10px;
  top: 10px;
  color: white;
  z-index: 1000000;
}

.stock {
  border-radius: 20px;
  padding: 5px 12px;
}

.bg-muted {
  background-color: gray;
}

.get_quote_form .form-control {
  border: none;
  border-radius: 0;
  padding-left: 0;
  border-bottom: 1px solid;
  background: transparent;
}
.get_quote_form .form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: none;
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.contact-us-form .form-control {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #cbcbcb;
  margin-bottom: 30px;
  padding-left: 0;
}
.contact-us-form .form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: none;
  outline: 0;
  box-shadow: none;
  background: transparent;
  border-bottom: 1px solid black;
}
.contact-us-form label {
  font-size: 14px;
}
.contact-us-form .contact-info i {
  font-size: 20px;
  background: #383838;
  padding: 10px;
  height: 50px;
  color: white;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  width: 50px;
  margin-top: 4px;
}
.contact-us-form .contact-info h4 {
  color: white;
}
.contact-us-form .contact-info p {
  color: white;
}

.whatsapp {
  background: #25d366;
  font-size: 38px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  color: white;
  border-radius: 50%;
  position: fixed;
  z-index: 1000;
  bottom: 10px;
  right: 10px;
  display: inline-block;
}
@media (max-width: 450px) {
  .whatsapp {
    bottom: 0;
    right: 0;
    border-radius: 0;
    border-top-left-radius: 25px;
  }
}
.whatsapp:hover {
  color: white;
  background: #075e54;
}

.phoneNum {
  background: #c40000;
  font-size: 24px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 56px;
  color: white;
  border-radius: 50%;
  position: fixed;
  z-index: 1000;
  bottom: 10px;
  left: 10px;
}
@media (max-width: 450px) {
  .phoneNum {
    bottom: 0;
    left: 0;
    border-radius: 0;
    border-top-right-radius: 25px;
  }
}
.phoneNum:hover {
  color: white;
  background: #383838;
}

.logo {
  height: 140px;
  position: relative;
  width: 100px;
  display: inline-block;
  border-radius: 50%;
  line-height: 0px;
}
.logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.logo-mob {
  width: 70px;
  height: 70px;
  background: white;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
}
.logo-mob img {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 50px;
}

.logo-title h1 {
  line-height: 1 !important;
}
.logo-title p {
  line-height: 1 !important;
}

.catalogues {
  position: fixed;
  top: 60%;
  z-index: 100;
  right: 0;
  transform-origin: 97% 0%;
  transform: rotate(90deg);
}
.catalogues a {
  padding: 10px 20px;
  background: #c40000;
  color: white;
  text-decoration: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0px 20px -10px black;
}
.catalogues a:hover {
  background: #383838;
}

.leadForm .form-control {
  border: none;
  border-radius: 0;
  padding-left: 0;
  border-bottom: 1px solid gray;
  background: transparent;
}
.leadForm .form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: none;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid black;
  background: transparent;
}

.feather {
  position: absolute;
  background: white;
  top: 45%;
}
.feather:hover {
  background: gray;
}
.feather.next {
  right: 0px;
  border-radius: 50%;
  border: 2px solid gray;
  height: 30px;
  width: 30px;
}
.feather.prev {
  left: 0px;
  border-radius: 50%;
  border: 2px solid gray;
  height: 30px;
  width: 30px;
}
@media (max-width: 450px) {
  .feather.prev {
    top: 30%;
    left: -10px;
  }
  .feather.next {
    top: 30%;
    right: -10px;
  }
}/*# sourceMappingURL=style.css.map */