@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.underline-animation {
  text-decoration: none;
  position: relative;
}
.underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #8d8888;
  transform-origin: bottom right;
  transition: transform 0.35s ease-out;
}
.underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.btn_1 {
  transition: all 0.4s ease-in-out;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 10px 40px;
  background: #F7941D;
  font-size: 0.875rem;
  font-weight: 400;
  border: none;
  color: #fff !important;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .btn_1 {
    padding: 4px 30px;
  }
}
@media (max-width: 767px) {
  .btn_1 {
    padding: 6px 30px;
  }
}
@media (max-width: 480px) {
  .btn_1 {
    font-size: 0.813rem;
  }
}
.btn_1:hover {
  background: #333333;
}

.btn_2 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in-out;
  font-size: 0.875rem;
  border: none;
  color: #F7941D;
  font-weight: 600;
}
@media (max-width: 480px) {
  .btn_2 {
    font-size: 0.813rem;
  }
}
.btn_2:hover {
  color: #000 !important;
}

.btn_3 {
  transition: all 0.4s ease-in-out;
  font-size: 1rem;
  border: none;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .btn_3 {
    font-size: 0.813rem;
  }
}
.btn_3 i {
  transition: all 0.4s ease-in-out;
  color: #F7941D;
  font-size: 1.2rem;
  padding-left: 5px;
}
.btn_3:hover {
  color: #000 !important;
  letter-spacing: 1px;
}

body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 24px;
  overflow-x: hidden !important;
  overflow-y: scroll;
  font-family: "Poppins", sans-serif;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  position: relative;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  color: #808080;
  line-height: 24px;
  font-weight: 400;
  font-size: 0.875rem;
  text-align: left;
}

a {
  text-decoration: none;
  transition: all 0.5s;
  color: #F7941D;
}
a:hover {
  text-decoration: none;
}

#scrl::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}

#scrl::-webkit-scrollbar-thumb {
  background-color: #F7941D;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

ul {
  padding: 0;
  margin: 0;
}

section {
  padding: 80px 0px;
}
@media (max-width: 991px) {
  section {
    padding: 60px 0px;
  }
}
@media (max-width: 480px) {
  section {
    padding: 40px 0px;
  }
}

.scrollup {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: none;
  text-indent: -9999px;
  z-index: 99999;
  background: url(../images/up-arrow.svg) no-repeat;
}
.scrollup img {
  width: 50px;
  height: 50px;
}

.form-group,
.form-floating {
  position: relative;
}
.form-group input,
.form-group .form-select,
.form-floating input,
.form-floating .form-select {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 40px;
  padding: 0 10px;
  width: 100%;
  font-size: 0.875rem;
  transition: all 0.4s ease;
  color: #5a5a59;
  border: 1px solid #ced4da;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group .form-select:focus,
.form-group select:focus,
.form-floating input:focus,
.form-floating textarea:focus,
.form-floating .form-select:focus,
.form-floating select:focus {
  outline: none;
  border: none;
  /* Remove border */
  /* or you can style the border differently */
  /* border: 2px solid #000; */
}
.form-group input,
.form-floating input {
  border: none;
}
.form-group textarea,
.form-floating textarea {
  height: 100px;
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  resize: none;
  color: #5a5a59;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #ced4da;
  transition: all 0.4s ease;
}
.form-group ::-moz-placeholder, .form-floating ::-moz-placeholder {
  color: #b1b1ae;
  font-weight: 400;
  font-size: 0.875rem;
  /* Firefox */
}
.form-group ::placeholder,
.form-floating ::placeholder {
  color: #b1b1ae;
  font-weight: 400;
  font-size: 0.875rem;
  /* Firefox */
}
.form-group :-ms-input-placeholder,
.form-floating :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #b1b1ae;
  font-weight: 400;
}
.form-group ::-ms-input-placeholder,
.form-floating ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #b1b1ae;
  font-weight: 400;
}

.form-label {
  margin-bottom: 0.2rem;
  color: #727272;
}

.header {
  transition: all 0.4s ease-in-out;
  background: none;
  padding: 0px;
  width: 100%;
  position: absolute;
  z-index: 99;
  top: 0;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  background: #fff;
}
.header .top_header {
  transition: all 0.4s ease-in-out;
  background: #F0F0F0;
  padding: 5px 0px;
  width: 100%;
}
.header .top_header .full {
  display: flex;
  width: 100%;
}
.header .top_header .full .left_box {
  width: 50%;
}
@media (max-width: 767px) {
  .header .top_header .full .left_box {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .header .top_header .full .left_box {
    width: 100%;
  }
}
.header .top_header .full .left_box ul {
  display: flex;
}
@media (max-width: 480px) {
  .header .top_header .full .left_box ul {
    justify-content: center;
  }
}
.header .top_header .full .left_box ul li {
  padding-right: 15px;
  list-style: none;
  color: #808080;
  font-size: 0.875rem;
}
@media (max-width: 480px) {
  .header .top_header .full .left_box ul li {
    font-size: 0.813rem;
  }
}
.header .top_header .full .left_box ul li:last-child {
  padding-right: 0;
}
.header .top_header .full .left_box ul li a {
  color: #808080;
}
.header .top_header .full .left_box ul li i {
  color: #F7941D;
}
.header .top_header .full .right_box {
  width: 50%;
}
@media (max-width: 767px) {
  .header .top_header .full .right_box {
    width: 20%;
  }
}
@media (max-width: 480px) {
  .header .top_header .full .right_box {
    display: none;
  }
}
.header .top_header .full .right_box ul {
  display: flex;
  justify-content: flex-end;
}
.header .top_header .full .right_box ul li {
  padding-right: 15px;
  list-style: none;
  color: #808080;
  font-size: 0.875rem;
}
.header .top_header .full .right_box ul li:last-child {
  padding-right: 0;
}
.header .top_header .full .right_box ul li a {
  color: #808080;
}
.header .top_header .full .right_box ul li i {
  color: #F7941D;
}
.header .nav-brand {
  padding: 0;
}
.header .logo {
  transition: all 0.4s ease-in-out;
  background: url(../images/logo.svg);
  display: inline-block;
  width: 122px;
  height: 67px;
  position: relative;
  margin: 10px 0 0 px;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .header .logo {
    width: 95px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .header .logo {
    width: 65px;
    height: 30px;
  }
}
.header .logo-ve {
  transition: all 0.4s ease-in-out;
  background: url(../images/ve-logo.svg);
  display: inline-block;
  width: 76px;
  height: 67px;
  position: relative;
  margin: 10px 0 0 px;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .header .logo-ve {
    width: 95px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .header .logo-ve {
    width: 66px;
    height: 40px;
  }
}
.header .btn_bg {
  transition: all 0.4s ease-in-out;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: #F7941D;
  color: #fff !important;
  padding: 5px 10px !important;
}
.header .btn_bg:hover {
  background: #333333;
}
.header .nav-menu .desk-none {
  display: none;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header.fixed .top_header {
  display: none;
}
.header.fixed .logo {
  transition: all 0.4s ease-in-out;
  background: url(../images/logo.svg) no-repeat;
  display: inline-block;
  width: 80px;
  height: 45px;
}
@media (max-width: 767px) {
  .header.fixed .logo {
    width: 60px;
    height: 33px;
  }
}

.navigation-portrait .btn_bg {
  width: auto !important;
  padding: 10px 20px !important;
  margin: 12px 15px 12px 26px !important;
}
.navigation-portrait .nav-dropdown > li > a {
  background: #F7941D;
}
.navigation-portrait .nav-dropdown > li > a {
  width: 100%;
  padding: 10px 15px;
  border-bottom: 1px solid #ffa12f;
}
.navigation-portrait .nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #000 #000 transparent;
}
.navigation-portrait .nav-dropdown > li:hover > a {
  background: #808080;
  color: #fff;
  letter-spacing: 0.5px;
}
.navigation-portrait .nav-menu > li.active > a::before {
  left: 26px;
  background: antiquewhite;
  width: 10%;
  margin: 0;
}

.slide {
  height: 100vh;
  position: relative;
}
@media (max-width: 767px) {
  .slide {
    height: auto;
    margin-top: 80px;
  }
}
.slide .intro {
  z-index: 0;
}
@media (max-width: 992px) {
  .slide .intro {
    height: auto;
  }
}
.slide .intro .item {
  display: flex;
  height: 100vh;
  overflow: hidden;
  align-items: baseline;
}
@media (max-width: 767px) {
  .slide .intro .item {
    height: auto;
  }
}
.slide .intro .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide .intro .item .slider-caption {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .slide .intro .item .slider-caption {
    padding: 0px 15px;
  }
}
.slide .intro .item .slider-caption h2 {
  color: #fff;
  font-weight: 800;
  font-size: 4rem;
  line-height: 75px;
  text-shadow: 0px -2px 6px rgba(0, 0, 0, 0.22);
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slide .intro .item .slider-caption h2 {
    line-height: 60px;
    font-size: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .slide .intro .item .slider-caption h2 {
    font-size: 3.5rem;
    line-height: 60px;
  }
}
@media only screen and (min-width: 540px) and (max-width: 768px) {
  .slide .intro .item .slider-caption h2 {
    line-height: 50px;
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .slide .intro .item .slider-caption h2 {
    line-height: 50px;
    font-size: 2.2rem;
  }
}
.slide .intro .item .slider-caption h2 .hash_clr {
  color: #A59483;
}
.slide .intro .item .slider-caption h2 .primery_clr {
  color: #F7941D;
}
.slide .intro .item .slider-caption h2::before {
  position: absolute;
  bottom: -15px;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  background: #F7941D;
}
@media (max-width: 767px) {
  .slide .intro .item .slider-caption h2::before {
    width: 100px;
    height: 4px;
  }
}
.slide .intro .owl-dots {
  display: none;
}
.slide .intro .owl-nav button.owl-prev,
.slide .intro .owl-nav button.owl-next {
  z-index: 1;
  width: 30px;
  height: 45px;
  position: absolute;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  transform: translatey(-50%);
}
.slide .intro .owl-nav button span {
  font-size: 30px;
  height: 100%;
  display: none;
  width: 100%;
}
.slide .intro .owl-nav button.owl-next {
  right: 20px;
  top: 47%;
  color: #fff;
}
@media (max-width: 992px) {
  .slide .intro .owl-nav button.owl-next {
    top: 45%;
    border-bottom: none;
  }
}
.slide .intro .owl-nav button.owl-prev {
  right: 20px;
  top: 53%;
  color: #fff;
}
.slide .intro .owl-nav button.owl-prev::before {
  font-family: bootstrap-icons !important;
  content: "\f284";
  font-size: 1.5rem;
  color: #fff;
}
.slide .intro .owl-nav button.owl-next::before {
  font-family: bootstrap-icons !important;
  content: "\f285";
  font-size: 1.5rem;
  color: #fff;
}
.slide .intro .owl-nav button:hover {
  background: none;
  color: #F7941D;
}
.slide .intro .owl-nav button:hover .owl-next::before {
  color: #F7941D;
}
.slide .main_services {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .slide .main_services {
    display: none;
  }
}
.slide .main_services .service_outer {
  position: relative;
  width: 100%;
}
.slide .main_services .service_outer ul {
  display: flex;
}
.slide .main_services .service_outer ul li {
  transition: all 0.4s ease-in-out;
  width: 25%;
  border-right: 1px solid rgba(118, 113, 113, 0.4588235294);
  list-style: none;
  position: relative;
}
.slide .main_services .service_outer ul li:last-child {
  border-right: 0;
}
.slide .main_services .service_outer ul li .boxes {
  transition: all 0.4s ease-in-out;
  padding: 1.5rem;
  position: absolute;
  bottom: 10px;
  background: rgba(32, 37, 38, 0.63);
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slide .main_services .service_outer ul li .boxes {
    padding: 1.3rem 1.2rem 1rem 0.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .slide .main_services .service_outer ul li .boxes {
    padding: 1rem;
    min-height: 100px;
  }
}
.slide .main_services .service_outer ul li .boxes .icons {
  margin-bottom: 10px;
  height: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .slide .main_services .service_outer ul li .boxes .icons {
    height: 25px;
  }
}
.slide .main_services .service_outer ul li .boxes .arrow_btn {
  transition: all 0.4s ease-in-out;
  color: #fff;
  display: flex;
  align-items: center;
}
.slide .main_services .service_outer ul li .boxes .arrow_btn i {
  padding-left: 1rem;
  font-size: 0.813rem;
  line-height: 0;
}
.slide .main_services .service_outer ul li .boxes h3 {
  transition: all 0.4s ease-in-out;
  color: #F7941D;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .slide .main_services .service_outer ul li .boxes h3 {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slide .main_services .service_outer ul li .boxes h3 {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .slide .main_services .service_outer ul li .boxes h3 {
    font-size: 0.75rem;
  }
}
.slide .main_services .service_outer ul li .boxes h3 br {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .slide .main_services .service_outer ul li .boxes h3 br {
    display: block;
  }
}
.slide .main_services .service_outer ul li .boxes p {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  display: -webkit-box;
  height: 39px;
  text-align: left;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 18px;
  text-overflow: ellipsis;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .slide .main_services .service_outer ul li .boxes p {
    display: none;
  }
}
.slide .main_services .service_outer ul li:hover .boxes {
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  background: #F7941D;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slide .main_services .service_outer ul li:hover .boxes {
    padding: 1.3rem 1.2rem 1.5rem 0.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .slide .main_services .service_outer ul li:hover .boxes {
    padding: 1.3rem 1rem 1.5rem 1rem;
  }
}
.slide .main_services .service_outer ul li:hover h3 {
  color: #fff;
}

.intro .desktop {
  display: block !important;
}
@media (max-width: 650px) {
  .intro .desktop {
    display: none !important;
  }
}

.intro .mobile {
  display: none !important;
}
@media (max-width: 650px) {
  .intro .mobile {
    display: block !important;
  }
}

.main_services_mobile {
  position: relative;
  display: none;
  padding: 0;
}
.main_services_mobile .owl-nav {
  display: none;
}
.main_services_mobile .owl-dots {
  margin-top: 25px;
}
.main_services_mobile .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
}
@media (max-width: 767px) {
  .main_services_mobile {
    display: block;
  }
}
.main_services_mobile .services_list {
  transform: translateY(-30px);
  background: #fff;
  padding: 5px;
}
.main_services_mobile .services_list .boxes {
  transition: all 0.4s ease-in-out;
  padding: 1rem 2rem 1rem 1rem;
  position: relative;
  bottom: 0;
  background: #F7941D;
  width: 100%;
}
.main_services_mobile .services_list .boxes .icons {
  margin-bottom: 10px;
  width: 32px;
  height: 32px;
}
.main_services_mobile .services_list .boxes .arrow_btn {
  transition: all 0.4s ease-in-out;
  padding: 10px;
  background: #333333;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_services_mobile .services_list .boxes h3 {
  transition: all 0.4s ease-in-out;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.main_services_mobile .services_list .boxes p {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  display: -webkit-box;
  height: 58px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 18px;
  text-overflow: ellipsis;
  margin-bottom: 0px;
}
.main_services_mobile .services_list .boxes:hover {
  background: #333333;
}
.main_services_mobile .services_list .boxes:hover .arrow_btn {
  background: #F7941D;
}

.about_conainer {
  width: 100%;
}
@media (max-width: 992px) {
  .about_conainer {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .about_conainer {
    padding-top: 10px;
  }
}
.about_conainer h1 {
  color: #000;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .about_conainer h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about_conainer h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 992px) {
  .about_conainer h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .about_conainer h1 {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.about_conainer h1 span {
  color: #F7941D;
}
.about_conainer .md-hide {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .about_conainer .md-hide {
    display: block;
  }
}
.about_conainer .md-seen {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .about_conainer .md-seen {
    display: none;
  }
}
.about_conainer .black {
  color: #000;
  font-weight: 500;
}
.about_conainer .vission_mision_box {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .about_conainer .vission_mision_box {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .about_conainer .vission_mision_box {
    margin-bottom: 20px;
  }
}
.about_conainer .vission_mision_box img {
  margin-bottom: 10px;
  position: relative;
}
.about_conainer .vission_mision_box .vission_mision {
  width: 100%;
}
.about_conainer .vission_mision_box .vission_mision img {
  width: 42px;
}
.about_conainer .vission_mision_box .vission_mision h4 {
  font-size: 1rem;
  position: relative;
  margin-bottom: 25px;
}
.about_conainer .vission_mision_box .vission_mision h4::before {
  width: 40px;
  height: 3px;
  background: #F7941D;
  position: absolute;
  bottom: -5px;
  content: "";
}
.about_conainer .vission_mision_box .vission_mision p {
  padding-right: 10px;
  margin-bottom: 0;
}
.about_conainer .vission_mision_box .owl-nav {
  display: none;
}
.about_conainer .vission_mision_box .owl-dots {
  margin-top: 25px;
}
@media (max-width: 992px) {
  .about_conainer .vission_mision_box .owl-dots {
    margin-top: 15px;
  }
}
.about_conainer .vission_mision_box .owl-theme .owl-dots {
  text-align: left;
}
.about_conainer .vission_mision_box .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 50%;
}
.about_conainer .about_img {
  width: 100%;
  position: relative;
  padding-left: 1.5rem;
}
@media (max-width: 767px) {
  .about_conainer .about_img {
    padding-left: 0rem;
  }
}
.about_conainer .about_img::before {
  position: absolute;
  content: "";
  right: -30px;
  bottom: -30px;
  width: 40%;
  height: 45%;
  background: rgba(247, 148, 29, 0.5);
}
@media (max-width: 992px) {
  .about_conainer .about_img::before {
    right: -10px;
    bottom: -10px;
  }
}

.products {
  width: 100%;
}
.products h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #F7941D;
}
@media (max-width: 480px) {
  .products h4 {
    font-size: 0.875rem;
  }
}
.products h3 {
  color: #000;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .products h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .products h3 {
    font-size: 1.4rem;
  }
}
.products .product_list {
  width: 100%;
  margin-top: 10px;
}
.products .product_list ul {
  display: flex;
  flex-wrap: wrap;
}
.products .product_list ul li {
  width: 25%;
  list-style: none;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .products .product_list ul li {
    width: 33.3%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .products .product_list ul li {
    width: 33.3%;
  }
}
@media (max-width: 767px) {
  .products .product_list ul li {
    width: 50%;
    border: 1px solid rgba(80, 80, 79, 0.431372549);
  }
}
.products .product_list ul li .product-img {
  width: 100%;
  position: relative;
}
.products .product_list ul li .product-img .readmore_btn {
  transition: all 0.4s ease-in-out;
  border-radius: 0px 20px 0px 0px;
  -webkit-border-radius: 0px 20px 0px 0px;
  -moz-border-radius: 0px 20px 0px 0px;
  -ms-border-radius: 0px 20px 0px 0px;
  -o-border-radius: 0px 20px 0px 0px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 480px) and (max-width: 992px) {
  .products .product_list ul li .product-img .readmore_btn {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .products .product_list ul li .product-img .readmore_btn {
    display: none;
  }
}
.products .product_list ul li .product-img .readmore_btn i {
  color: #F7941D;
  font-size: 2rem;
}
@media only screen and (min-width: 480px) and (max-width: 992px) {
  .products .product_list ul li .product-img .readmore_btn i {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .products .product_list ul li .product-img .readmore_btn i {
    font-size: 1.4rem;
  }
}
.products .product_list ul li .product-img .content {
  transition: all 0.4s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 2rem;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8980392157);
  opacity: 0;
}
@media (max-width: 767px) {
  .products .product_list ul li .product-img .content {
    opacity: 1;
    padding: 1rem;
    justify-content: flex-end;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(42, 42, 42) 100%);
  }
}
.products .product_list ul li .product-img .content h4 {
  color: #000;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .products .product_list ul li .product-img .content h4 {
    color: #fff;
  }
}
@media (max-width: 480px) {
  .products .product_list ul li .product-img .content h4 {
    font-size: 0.875rem;
  }
}
.products .product_list ul li .product-img .content p {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .products .product_list ul li .product-img .content p {
    display: none;
  }
}
@media (max-width: 767px) {
  .products .product_list ul li .product-img .content p {
    display: none;
  }
}
@media (max-width: 480px) {
  .products .product_list ul li .product-img .content .btn_1 {
    padding: 1px 20px;
    font-size: 0.75rem;
  }
}
.products .product_list ul li:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.products .product_list ul li:hover .content {
  opacity: 1;
}
.products .product_list ul li:hover .readmore_btn {
  opacity: 0;
}

.services {
  background: #F8F8F8;
}
.services h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #F7941D;
}
@media (max-width: 480px) {
  .services h4 {
    font-size: 0.875rem;
  }
}
.services h3 {
  color: #000;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .services h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .services h3 {
    font-size: 1.4rem;
  }
}
.services .service_listing {
  width: 100%;
  margin-top: 20px;
}
.services .service_listing ul {
  display: flex;
  flex-wrap: wrap;
}
.services .service_listing ul li {
  transition: all 0.4s ease-in-out;
  width: 25%;
  list-style: none;
  padding: 1rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services .service_listing ul li {
    width: 33.3%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services .service_listing ul li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .services .service_listing ul li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .services .service_listing ul li {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.services .service_listing ul li .service_box {
  width: 100%;
}
.services .service_listing ul li .service_box .icon {
  position: relative;
  margin-bottom: 20px;
}
.services .service_listing ul li .service_box .icon::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 3px;
  background: #F7941D;
  bottom: -10px;
  left: 0;
}
@media (max-width: 480px) {
  .services .service_listing ul li .service_box .icon::after {
    width: 50px;
  }
}
.services .service_listing ul li .service_box h4 {
  font-size: 0.875rem;
  color: #000;
  font-weight: 700;
  width: 90%;
  line-height: 22px;
  text-transform: uppercase;
}
.services .service_listing ul li .service_box p {
  display: -webkit-box;
  font-size: 0.813rem;
  height: 57px;
  line-height: 18px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0rem;
}
.services .service_listing ul li:hover {
  background: #fff;
}

.featured_products {
  width: 100%;
  background: url(../images/featured_product_bg.webp);
  position: relative;
}
@media (max-width: 1400px) {
  .featured_products {
    padding-bottom: 40px;
  }
}
.featured_products::before {
  position: absolute;
  content: "";
  background: #F0F0F0;
  bottom: 0;
  width: 100%;
  height: 292px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .featured_products::before {
    height: 252px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .featured_products::before {
    height: 253px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 992px) {
  .featured_products::before {
    height: 252px;
  }
}
@media (max-width: 480px) {
  .featured_products::before {
    height: 252px;
  }
}
.featured_products h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 480px) {
  .featured_products h4 {
    font-size: 0.875rem;
  }
}
.featured_products h3 {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .featured_products h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .featured_products h3 {
    font-size: 1.4rem;
  }
}
.featured_products h3 span {
  color: #F7941D;
}
.featured_products .products_list {
  z-index: 0;
}
.featured_products .products_list .item {
  display: flex;
  align-items: baseline;
}
.featured_products .products_list .item .products_list_box {
  background: #fff;
  margin: 15px 0px 20px 0px;
}
@media (max-width: 768px) {
  .featured_products .products_list .item .products_list_box {
    margin-top: 0;
  }
}
.featured_products .products_list .item .products_list_box .products_list_img {
  transition: all 0.4s ease-in-out;
  background: #F7941D;
  overflow: hidden;
}
.featured_products .products_list .item .products_list_box .products_list_img img {
  transition: all 0.4s ease-in-out;
}
.featured_products .products_list .item .products_list_box .products_list_content {
  padding: 1.5rem;
  height: 135px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (max-width: 767px) {
  .featured_products .products_list .item .products_list_box .products_list_content {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .featured_products .products_list .item .products_list_box .products_list_content {
    height: auto;
    padding: 1rem 0.5rem;
  }
}
.featured_products .products_list .item .products_list_box .products_list_content h4 {
  font-weight: 600;
  font-size: 1rem;
  color: #000;
  text-align: left;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .featured_products .products_list .item .products_list_box .products_list_content h4 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .featured_products .products_list .item .products_list_box .products_list_content h4 {
    font-size: 0.875rem;
    margin-bottom: 5px;
  }
}
.featured_products .products_list .item .products_list_box .products_list_content p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #808080;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .featured_products .products_list .item .products_list_box .products_list_content p {
    height: 48px;
    min-height: 40px;
  }
}
@media (max-width: 480px) {
  .featured_products .products_list .item .products_list_box .products_list_content p {
    margin-bottom: 0;
  }
}
.featured_products .products_list .item .products_list_box:hover img {
  opacity: 0.7;
  transform: scale(1.2);
}
.featured_products .products_list .owl-nav {
  display: none;
}
.featured_products .products_list .owl-dots {
  margin-top: 25px;
}

.business_verticals {
  width: 100%;
  background: url(../images/featured_product_bg.webp);
  position: relative;
}
@media (max-width: 1400px) {
  .business_verticals {
    padding-bottom: 40px;
  }
}
.business_verticals::before {
  position: absolute;
  content: "";
  background: #FCFCFC;
  bottom: 0;
  width: 100%;
  height: 292px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .business_verticals::before {
    height: 252px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .business_verticals::before {
    height: 253px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 992px) {
  .business_verticals::before {
    height: 252px;
  }
}
@media (max-width: 480px) {
  .business_verticals::before {
    height: 252px;
  }
}
.business_verticals h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 480px) {
  .business_verticals h4 {
    font-size: 0.875rem;
  }
}
.business_verticals h3 {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .business_verticals h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .business_verticals h3 {
    font-size: 1.4rem;
  }
}
.business_verticals h3 span {
  color: #F7941D;
}
.business_verticals .businessverticals {
  z-index: 0;
}
.business_verticals .businessverticals .item {
  display: flex;
  align-items: baseline;
}
.business_verticals .businessverticals .item .products_list_box {
  background: #fff;
  margin: 15px 0px 20px 0px;
}
@media (max-width: 768px) {
  .business_verticals .businessverticals .item .products_list_box {
    margin-top: 0;
  }
}
.business_verticals .businessverticals .item .products_list_box .products_list_img {
  transition: all 0.4s ease-in-out;
  background: #F7941D;
  overflow: hidden;
}
.business_verticals .businessverticals .item .products_list_box .products_list_img img {
  transition: all 0.4s ease-in-out;
}
.business_verticals .businessverticals .item .products_list_box .products_list_content {
  padding: 1.5rem;
  box-shadow: rgba(100, 100, 111, 0.11) 0px 7px 29px 0px;
  background: #F9F9F9;
}
@media (max-width: 767px) {
  .business_verticals .businessverticals .item .products_list_box .products_list_content {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .business_verticals .businessverticals .item .products_list_box .products_list_content {
    height: auto;
    padding: 1rem 0.5rem;
  }
}
.business_verticals .businessverticals .item .products_list_box .products_list_content h4 {
  font-weight: 600;
  font-size: 1rem;
  color: #000;
  text-align: left;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .business_verticals .businessverticals .item .products_list_box .products_list_content h4 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .business_verticals .businessverticals .item .products_list_box .products_list_content h4 {
    font-size: 0.875rem;
    margin-bottom: 5px;
  }
}
.business_verticals .businessverticals .item .products_list_box .products_list_content p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #808080;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .business_verticals .businessverticals .item .products_list_box .products_list_content p {
    height: 48px;
    min-height: 40px;
  }
}
@media (max-width: 480px) {
  .business_verticals .businessverticals .item .products_list_box .products_list_content p {
    margin-bottom: 0;
  }
}
.business_verticals .businessverticals .item .products_list_box:hover img {
  opacity: 0.7;
  transform: scale(1.2);
}
.business_verticals .businessverticals .owl-nav {
  display: none;
}
.business_verticals .businessverticals .owl-dots {
  margin-top: 25px;
}

.our_strength {
  width: 100%;
  background: #F0F0F0;
}
@media (max-width: 991px) {
  .our_strength {
    padding: 30px 0px;
  }
}
.our_strength h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #F7941D;
}
@media (max-width: 480px) {
  .our_strength h4 {
    font-size: 0.875rem;
  }
}
.our_strength h3 {
  color: #000;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .our_strength h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .our_strength h3 {
    font-size: 1.4rem;
  }
}
.our_strength .content_para {
  width: 100%;
  padding: 0 3rem;
}
@media (max-width: 1200px) {
  .our_strength .content_para {
    padding: 0;
  }
}
.our_strength .content_para .large {
  font-size: 1rem;
}
@media (max-width: 480px) {
  .our_strength .content_para .large {
    font-size: 0.875rem;
  }
}
.our_strength .strength_boxes {
  width: 100%;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .our_strength .strength_boxes {
    margin-top: 1rem;
  }
}
.our_strength .strength_boxes ul {
  display: flex;
  flex-wrap: wrap;
}
.our_strength .strength_boxes ul li {
  width: 25%;
  list-style: none;
  padding: 0px 10px;
  position: relative;
}
@media (max-width: 992px) {
  .our_strength .strength_boxes ul li {
    width: 50%;
    margin-bottom: 15px;
  }
}
.our_strength .strength_boxes ul li .strength_list {
  padding: 0rem;
  overflow: hidden;
  position: relative;
}
.our_strength .strength_boxes ul li .strength_list::before {
  transition: transform 0.4s ease-in-out;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(247, 149, 29, 0.7882352941);
  left: 0;
  opacity: 0;
  bottom: -500px;
}
@media (max-width: 767px) {
  .our_strength .strength_boxes ul li .strength_list::before {
    opacity: 1;
    background: rgba(16, 16, 16, 0.5843137255);
  }
}
.our_strength .strength_boxes ul li .content {
  transition: all 0.4s ease-in-out;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 0px 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(52px);
  overflow: hidden;
}
@media (max-width: 767px) {
  .our_strength .strength_boxes ul li .content {
    padding: 0px 1rem;
  }
}
@media (max-width: 480px) {
  .our_strength .strength_boxes ul li .content {
    transform: translateY(-20px);
  }
}
.our_strength .strength_boxes ul li .content .icon {
  margin-bottom: 15px;
}
.our_strength .strength_boxes ul li .content h3 {
  text-align: center;
  font-size: 0.875rem;
  color: #fff;
}
@media (max-width: 767px) {
  .our_strength .strength_boxes ul li .content h3 {
    margin-bottom: 5px;
  }
}
.our_strength .strength_boxes ul li .content p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #fff;
  display: -webkit-box;
  height: 50px;
  font-size: 0.813rem;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 18px;
  text-align: center;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  opacity: 0;
}
@media (max-width: 480px) {
  .our_strength .strength_boxes ul li .content p {
    display: none;
  }
}
.our_strength .strength_boxes ul li .content .btn_2 {
  color: #fff;
}
.our_strength .strength_boxes ul li .content .btn_2:hover {
  color: #fff;
}
.our_strength .strength_boxes ul li:hover .strength_list::before {
  opacity: 1;
  bottom: 0;
  transition: bottom 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .our_strength .strength_boxes ul li:hover .strength_list::before {
    background: rgba(247, 149, 29, 0.7882352941);
  }
}
.our_strength .strength_boxes ul li:hover .content {
  transform: translateY(-30px);
}
@media (max-width: 480px) {
  .our_strength .strength_boxes ul li:hover .content {
    transform: translateY(-20px);
  }
}
.our_strength .strength_boxes ul li:hover .content p {
  opacity: 1;
}

.why_era {
  width: 100%;
}
.why_era h2 {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .why_era h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .why_era h2 {
    font-size: 1.4rem;
  }
}
.why_era h2 span {
  color: #F7941D;
}
.why_era .about_box {
  padding-right: 4rem;
  position: relative;
}
@media (max-width: 992px) {
  .why_era .about_box {
    padding-right: 0rem;
  }
}
.why_era .about_box .large {
  font-size: 1rem;
  margin-top: 1rem;
}
.why_era .about_img {
  position: relative;
}
.why_era .about_img .video_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
}
.why_era .about_img .video_icon i {
  transition: all 0.4s ease-in-out;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.5450980392);
}
.why_era .about_img .video_icon:hover i {
  color: #F7941D;
}

.contact_info {
  width: 100%;
  background: #F7941D;
  padding: 40px 0px;
}
.contact_info .info {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .contact_info .info {
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
  }
}
.contact_info .info h2 {
  font-weight: 600;
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 0px;
}
@media (max-width: 480px) {
  .contact_info .info h2 {
    font-size: 1rem;
  }
}
.contact_info .info .btn_1 {
  background: #333333;
  margin-left: 1rem;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}
@media (max-width: 480px) {
  .contact_info .info .btn_1 {
    margin-left: 0rem;
    margin-top: 1rem;
  }
}
.contact_info .info .btn_1:hover {
  background: #fff;
  color: #F7941D !important;
}
.contact_info .iso {
  width: 100%;
}
@media (max-width: 1200px) {
  .contact_info .iso {
    margin-bottom: 2rem;
  }
}
.contact_info .iso h4 {
  margin-bottom: 1rem;
  color: #fff;
  text-align: left;
}
@media (max-width: 768px) {
  .contact_info .iso h4 {
    text-align: center;
  }
}
.contact_info .iso ul {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .contact_info .iso ul {
    text-align: center;
    justify-content: center;
  }
}
.contact_info .iso ul li {
  display: flex;
  flex-wrap: wrap;
  padding-right: 1rem;
  font-size: 1rem;
  list-style: none;
  color: #fff;
}
.contact_info .iso ul li:last-child {
  padding-right: 0;
}
@media (max-width: 1200px) {
  .contact_info .iso ul li {
    flex-direction: column;
  }
}
.contact_info .iso ul li img {
  width: 200px;
  border: 2px solid #808080;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .contact_info .iso ul li img {
    width: 160px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact_info .iso ul li img {
    width: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .contact_info .iso ul li img {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .contact_info .iso ul li img {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .contact_info .iso ul li img {
    width: 100px;
  }
}

.footer {
  background-color: #2C2C2C;
  padding: 60px 0px;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0px;
  }
}
.footer .logo {
  width: 100px;
  margin-bottom: 2rem;
}
.footer p {
  color: #909090;
}
.footer .social-icons {
  width: 100%;
  width: 100%;
}
.footer .social-icons ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .social-icons ul li {
  padding: 10px;
  list-style: none;
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  .footer .social-icons ul li {
    padding: 10px 5px;
  }
}
.footer .social-icons ul li a {
  color: #fff !important;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.footer .social-icons ul li a:hover {
  color: #F7941D !important;
}
.footer .social-icons ul li:first-child {
  padding-left: 0px;
}
.footer .get_in_touch {
  width: 100%;
  margin-top: 1rem;
}
.footer .get_in_touch ul li {
  list-style: none;
  color: #909090;
  padding: 10px 0px;
  font-size: 1rem;
}
.footer .get_in_touch ul li a {
  color: #909090;
}
.footer .get_in_touch ul li i {
  padding-right: 1rem;
  color: #F7941D;
}
.footer h5 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}
.footer .footer_list {
  display: flex;
  justify-content: space-between;
}
.footer .footer_list .listing {
  width: 100%;
}
.footer .footer_list .listing ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer .footer_list .listing ul li {
  transition: all 0.4s ease-in-out;
  padding: 4px 0px 4px 25px;
  list-style: none;
  font-size: 0.875rem;
  width: 100%;
  font-weight: 400;
  position: relative;
}
.footer .footer_list .listing ul li::before {
  content: "\f134";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 1rem;
  color: #F7941D;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .footer_list .listing ul li {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .footer .footer_list .listing ul li {
    font-size: 0.813rem;
  }
}
.footer .footer_list .listing ul li a {
  color: #8d8888 !important;
  position: relative;
}
.footer .footer_list .listing ul li a:hover {
  color: #F7941D !important;
}
.footer .footer_list .listing ul li {
  text-transform: uppercase;
}
.footer .subscribe_form {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  width: 100%;
  background: #464646;
  border: none;
}
@media (max-width: 767px) {
  .footer .subscribe_form {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .footer .subscribe_form {
    width: 90%;
  }
}
.footer .subscribe_form .input-group > .form-control {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  color: rgb(209, 209, 209);
  font-size: 0.813rem;
  background: #201F1F;
  border: none;
  padding: 1.2rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .subscribe_form .input-group > .form-control {
    padding: 10px 5px;
  }
}
.footer .subscribe_form .input-group .btn {
  border-radius: 0px 5px 5px 0px;
  -webkit-border-radius: 0px 5px 5px 0px;
  -moz-border-radius: 0px 5px 5px 0px;
  -ms-border-radius: 0px 5px 5px 0px;
  -o-border-radius: 0px 5px 5px 0px;
  padding: 1.2rem;
  font-size: 0.75rem;
  background: #201F1F;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .subscribe_form .input-group .btn {
    padding: 10px 10px;
  }
}
.footer .subscribe_form .form-control::-moz-placeholder {
  color: #686868;
}
.footer .subscribe_form .form-control::placeholder {
  color: #686868;
}

.powered {
  background: #000;
  padding: 20px 0px;
}
.powered p {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
}
.powered p a {
  color: #fff;
}

.mobile_view {
  display: none;
}
@media (max-width: 767px) {
  .mobile_view {
    display: block;
  }
}

.inner_banner {
  background: #F7941D;
  padding: 110px 0px;
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: 1;
  margin-top: 115px;
  -webkit-clip-path: polygon(100% 0, 100% 80%, 96% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 80%, 96% 100%, 0 100%, 0 0);
}
@media (max-width: 992px) {
  .inner_banner {
    margin-top: 105px;
  }
}
@media (max-width: 767px) {
  .inner_banner {
    -webkit-clip-path: polygon(100% 0, 100% 85%, 90% 100%, 0 100%, 0 0);
            clip-path: polygon(100% 0, 100% 85%, 90% 100%, 0 100%, 0 0);
  }
}
@media (max-width: 480px) {
  .inner_banner {
    margin-top: 82px;
    padding: 80px 0px;
  }
}
.inner_banner h1 {
  color: #000;
  font-weight: 700;
  font-size: 2.5rem;
  position: relative;
}
.inner_banner h1::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -15px;
  width: 80px;
  height: 4px;
  background: #F7941D;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_banner h1 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .inner_banner h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .inner_banner h1 {
    font-size: 1.6rem;
  }
}
.inner_banner .breadcrums {
  padding: 5px 0px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  background: rgba(252, 225, 194, 0.5411764706);
  padding: 5px 10px;
}
.inner_banner .breadcrums ul {
  margin-left: 0;
  display: flex;
}
@media (max-width: 767px) {
  .inner_banner .breadcrums ul {
    flex-wrap: wrap;
  }
}
.inner_banner .breadcrums ul li {
  display: inline-flex;
  align-items: flex-end;
  color: #000;
  position: relative;
  padding: 0px 20px;
}
@media (max-width: 767px) {
  .inner_banner .breadcrums ul li {
    font-size: 0.813rem;
  }
}
.inner_banner .breadcrums ul li:first-child {
  padding: 0px 15px 0px 0px;
}
@media (max-width: 767px) {
  .inner_banner .breadcrums ul li:first-child {
    padding: 0px 5px 0px 0px;
  }
}
.inner_banner .breadcrums ul li:first-child::before {
  display: none;
}
.inner_banner .breadcrums ul li:last-child {
  padding-right: 0;
}
.inner_banner .breadcrums ul li::before {
  position: absolute;
  content: "\f285" !important;
  font-family: bootstrap-icons !important;
  color: #8B510C;
  left: -5px;
}
@media (max-width: 767px) {
  .inner_banner .breadcrums ul li::before {
    left: 0px;
  }
}
.inner_banner .breadcrums ul li a {
  display: flex;
  align-items: flex-end;
  color: #000;
}
@media (max-width: 767px) {
  .inner_banner .breadcrums ul li a {
    font-size: 0.813rem;
  }
}
.inner_banner .breadcrums ul i {
  font-size: 20px;
  color: #F7941D;
  padding-right: 10px;
}

.detail_banner {
  background: #fff;
  padding: 40px 0px;
  position: relative;
  z-index: 1;
  margin-top: 115px;
}
@media (max-width: 992px) {
  .detail_banner {
    margin-top: 80px;
  }
}
@media (max-width: 480px) {
  .detail_banner {
    margin-top: 82px;
    padding: 30px 0px;
  }
}
.detail_banner h1 {
  color: #000;
  font-weight: 700;
  font-size: 2.5rem;
  position: relative;
}
.detail_banner h1::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -15px;
  width: 80px;
  height: 4px;
  background: #F7941D;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .detail_banner h1 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .detail_banner h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .detail_banner h1 {
    font-size: 1.6rem;
  }
}
.detail_banner .breadcrums {
  padding: 5px 0px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  background: rgba(252, 225, 194, 0.5411764706);
  padding: 5px 10px;
}
.detail_banner .breadcrums ul {
  margin-left: 0;
  display: flex;
}
@media (max-width: 767px) {
  .detail_banner .breadcrums ul {
    flex-wrap: wrap;
  }
}
.detail_banner .breadcrums ul li {
  display: inline-flex;
  align-items: flex-end;
  color: #000;
  position: relative;
  padding: 0px 20px;
}
@media (max-width: 767px) {
  .detail_banner .breadcrums ul li {
    font-size: 0.813rem;
  }
}
.detail_banner .breadcrums ul li:first-child {
  padding: 0px 20px 0px 0px;
}
@media (max-width: 767px) {
  .detail_banner .breadcrums ul li:first-child {
    padding: 0px 5px 0px 0px;
  }
}
.detail_banner .breadcrums ul li:first-child::before {
  display: none;
}
.detail_banner .breadcrums ul li:last-child {
  padding-right: 0;
}
.detail_banner .breadcrums ul li::before {
  position: absolute;
  content: "\f285" !important;
  font-family: bootstrap-icons !important;
  color: #8B510C;
  left: -10px;
}
@media (max-width: 767px) {
  .detail_banner .breadcrums ul li::before {
    left: 0px;
  }
}
.detail_banner .breadcrums ul li a {
  display: flex;
  align-items: flex-end;
  color: #000;
}
@media (max-width: 767px) {
  .detail_banner .breadcrums ul li a {
    font-size: 0.813rem;
  }
}
.detail_banner .breadcrums ul i {
  font-size: 20px;
  color: #F7941D;
  padding-right: 10px;
}

.inner_container {
  width: 100%;
}
.inner_container h4 {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  font-size: 1rem;
  font-weight: 400;
  display: inline-block;
  padding: 5px 15px;
  background: #F7941D;
  color: #fff;
}
@media (max-width: 767px) {
  .inner_container h4 {
    font-size: 0.875rem;
  }
}
.inner_container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner_container h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .inner_container h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .inner_container h2 {
    font-size: 1.6rem;
  }
}
.inner_container h2 span {
  color: #F7941D;
}
.inner_container .black {
  color: #000;
  font-weight: 500;
}
.inner_container .about_img {
  width: 100%;
  position: relative;
}
.inner_container .about_img .experience {
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: -10%;
  bottom: 12%;
  display: flex;
  align-items: center;
  background: #fef6e6;
  padding: 1rem;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner_container .about_img .experience {
    left: -5%;
  }
}
@media (max-width: 767px) {
  .inner_container .about_img .experience {
    left: 5%;
    bottom: 5%;
  }
}
.inner_container .about_img .experience .year {
  background: linear-gradient(180deg, #FFCE4F 0%, #F79400 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.8;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner_container .about_img .experience .year {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .about_img .experience .year {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .inner_container .about_img .experience .year {
    font-size: 2.5rem;
  }
}
.inner_container .about_img .experience .text {
  padding-left: 1.5rem;
  font-weight: 600;
}
.inner_container .about_img .experience .text span {
  display: block;
}
.inner_container .about_img img {
  border-radius: 10px 185px 10px 10px;
}
.inner_container .company {
  padding-left: 2.5rem;
}
@media (max-width: 992px) {
  .inner_container .company {
    padding-left: 0rem;
  }
}
.inner_container .company .big_text {
  display: flex;
}
.inner_container .company .big_text .quote {
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .inner_container .company .big_text .quote {
    padding-right: 0.5rem;
  }
}
.inner_container .company .big_text .quote i {
  color: #F7941D;
  font-size: 4rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .company .big_text .quote {
    padding-right: 0.5rem;
  }
}
@media (max-width: 992px) {
  .inner_container .company .big_text .quote svg {
    width: 40px;
    height: 40px;
  }
}
.inner_container .company .download_brochure {
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  background: #eef1f4;
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #D5D5D5;
}
@media (max-width: 992px) {
  .inner_container .company .download_brochure {
    padding: 0.5rem 1rem;
  }
}
.inner_container .company .download_brochure .brochure {
  transition: all 0.4s ease-in-out;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
}
.inner_container .company .download_brochure .download {
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .inner_container .company .download_brochure .download {
    padding-left: 0.5rem;
  }
}
@media (max-width: 992px) {
  .inner_container .company .download_brochure .download svg {
    width: 40px;
    height: 40px;
  }
}
.inner_container .company .download_brochure:hover {
  background: #333333;
}
.inner_container .company .download_brochure:hover .brochure {
  color: #fff;
}
.inner_container .mission_vision_values {
  background: linear-gradient(180deg, #F7941D 0%, #333 100%);
  padding: 2.5rem;
  display: flex;
  position: relative;
}
@media (max-width: 767px) {
  .inner_container .mission_vision_values {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .inner_container .mission_vision_values {
    padding: 1.5rem;
  }
}
.inner_container .mission_vision_values .shape2 {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}
.inner_container .mission_vision_values .out_box {
  display: flex;
  width: 100%;
}
.inner_container .mission_vision_values .out_box ul li {
  list-style: none;
  width: 100%;
  display: flex;
}
.inner_container .mission_vision_values .out_box ul li .left_box {
  transition: all 0.4s ease-in-out;
  background: #fef6e6;
  padding: 1rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
@media (max-width: 992px) {
  .inner_container .mission_vision_values .out_box ul li .left_box {
    width: 50px;
    height: 50px;
    padding: 0.5rem;
  }
}
.inner_container .mission_vision_values .out_box ul li .right_box {
  padding-left: 2rem;
  padding-right: 1rem;
}
@media (max-width: 992px) {
  .inner_container .mission_vision_values .out_box ul li .right_box {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .inner_container .mission_vision_values .out_box ul li .right_box {
    padding-right: 0rem;
  }
}
.inner_container .mission_vision_values .out_box ul li .right_box h4 {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 0px;
  background: none;
}
@media (max-width: 767px) {
  .inner_container .mission_vision_values .out_box ul li .right_box h4 {
    font-size: 1.2rem;
  }
}
.inner_container .mission_vision_values .out_box ul li .right_box p {
  color: #fff;
}
.inner_container .mission_vision_values .out_box ul li:hover .left_box {
  transform: rotateY(180deg);
}
.inner_container .m_v_v {
  padding: 10px;
}
.inner_container .m_v_v .nav {
  justify-content: center;
}
.inner_container .m_v_v .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #555;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 12px 20px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .inner_container .m_v_v .nav-tabs .nav-link {
    font-size: 0.875rem;
    padding: 10px 15px;
  }
}
.inner_container .m_v_v .nav-tabs .nav-link:hover {
  border-bottom: 2px solid #ddd;
}
.inner_container .m_v_v .nav-tabs .nav-link.active {
  border-bottom: 2px solid #333333;
  color: #fff;
  background-color: #F7941D;
}
.inner_container .m_v_v .tab-content {
  padding: 2.5rem;
  border: 1px solid #ddd;
  border-top: none;
  background: beige;
}
@media (max-width: 767px) {
  .inner_container .m_v_v .tab-content {
    padding: 1.5rem;
  }
}
.inner_container .m_v_v .tab-content .content {
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .inner_container .m_v_v .tab-content .content {
    padding-right: 0rem;
  }
}
.inner_container .m_v_v .tab-content .content h3 {
  position: relative;
}
@media (max-width: 767px) {
  .inner_container .m_v_v .tab-content .content h3 {
    font-size: 1rem;
  }
}
.inner_container .m_v_v .tab-content .content h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 4px;
  background: #F7941D;
}
.inner_container .m_v_v .tab-content .content p {
  line-height: 30px;
}
.inner_container .contact_form {
  padding: 2.5rem;
  background: #333333;
  position: relative;
  box-shadow: rgba(41, 41, 41, 0.4) 5px 5px, rgba(124, 124, 124, 0.3) 10px 10px, rgba(90, 88, 89, 0.2) 15px 15px, rgba(108, 107, 108, 0.1) 20px 20px, rgba(143, 140, 141, 0.05) 25px 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner_container .contact_form {
    padding: 1.8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .contact_form {
    padding: 1.8rem;
  }
}
@media (max-width: 767px) {
  .inner_container .contact_form {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .inner_container .contact_form {
    padding: 1.5rem;
  }
}
.inner_container .contact_form .shape1 {
  position: absolute;
  left: -50px;
  bottom: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .inner_container .contact_form .shape1 {
    display: none;
  }
}
.inner_container .contact_form h3 {
  color: #fff;
  font-weight: 200;
  font-size: 2rem;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .inner_container .contact_form h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .inner_container .contact_form h3 {
    font-size: 1.5rem;
  }
}
.inner_container .contact_form h3 span {
  font-size: 2.5rem;
  color: #F7941D;
  display: block;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .inner_container .contact_form h3 span {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .inner_container .contact_form h3 span {
    font-size: 2rem;
  }
}
.inner_container .contact_form .form-label {
  margin-bottom: 0.2rem;
  color: #bcbcbc;
}
.inner_container .contact_form .btn_1:hover {
  background: #fff;
  color: #333333 !important;
}
.inner_container .get_touch {
  padding-right: 4rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .get_touch {
    padding-right: 1.5rem;
  }
}
@media (max-width: 767px) {
  .inner_container .get_touch {
    padding-right: 0rem;
  }
}
.inner_container .get_touch .address_box {
  width: 100%;
  position: relative;
  margin-bottom: 1.5rem;
}
.inner_container .get_touch .address_box .icon {
  width: 50px;
  height: 50px;
  position: absolute;
  background: #F7941D;
  top: 0rem;
  left: 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .inner_container .get_touch .address_box .icon {
    width: 35px;
    height: 35px;
  }
}
.inner_container .get_touch .address_box .icon i {
  font-size: 1.5rem;
  color: #fff;
}
@media (max-width: 767px) {
  .inner_container .get_touch .address_box .icon i {
    font-size: 1.2rem;
  }
}
.inner_container .get_touch .address_box .lists {
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .inner_container .get_touch .address_box .lists {
    padding-left: 3rem;
  }
}
.inner_container .get_touch .address_box .lists p a {
  color: #808080;
}
.inner_container .get_touch .address_box .lists p a:hover {
  color: #F7941D;
}

.map {
  width: 100%;
}

/* Feel free to change duration  */
.animated {
  animation-duration: 1000 ms;
  animation-fill-mode: both;
}

.owl-animated-out {
  z-index: 1;
}

.owl-animated-in {
  z-index: 0;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  z-index: 99;
  width: 50px;
  height: 50px;
  padding: 5px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.btn-whatsapp-pulse i {
  font-size: 1.8rem;
}

.btn-whatsapp-pulse:hover {
  color: white;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.landing_banner {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  margin-top: 115px;
}
@media (max-width: 992px) {
  .landing_banner {
    margin-top: 105px;
  }
}
@media (max-width: 767px) {
  .landing_banner {
    height: 60vh;
  }
}
@media (max-width: 480px) {
  .landing_banner {
    margin-top: 82px;
  }
}
.landing_banner h1 {
  color: #fff;
  font-weight: 800;
  font-size: 4rem;
  line-height: 75px;
  text-shadow: 0px -2px 6px rgba(0, 0, 0, 0.22);
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .landing_banner h1 {
    line-height: 60px;
    font-size: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .landing_banner h1 {
    font-size: 3.5rem;
    line-height: 60px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .landing_banner h1 {
    line-height: 50px;
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .landing_banner h1 {
    line-height: 50px;
    font-size: 2.2rem;
  }
}
.landing_banner h1 .hash_clr {
  color: #A59483;
}
.landing_banner h1 .primery_clr {
  color: #F7941D;
}
.landing_banner h1::before {
  position: absolute;
  bottom: -15px;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  background: #F7941D;
}
@media (max-width: 767px) {
  .landing_banner h1::before {
    width: 100px;
    height: 4px;
  }
}

.industrialbg {
  background: url("../images/industrial-materials.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .industrialbg {
    background-image: url("../images/industrial_material_mob.webp");
  }
}

.roadsign_bg {
  background: url("../images/road-sign/road-sign-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .roadsign_bg {
    background-image: url("../images/road-sign/road-sign-bg_mob.jpg");
  }
}

.era_bg {
  background: url("../images/era-tex/era-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .era_bg {
    background-image: url("../images/era-tex/era-banner-mob.webp");
  }
}

.cnc_bg {
  background: url("../images/cnc/cnc-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .cnc_bg {
    background-image: url("../images/cnc/cnc-banner-mob.webp");
  }
}

.safety_supply_bg {
  background: url("../images/safety-supplies/banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .safety_supply_bg {
    background-image: url("../images/safety-supplies/banner-mobile.webp");
  }
}

.about_landing {
  width: 100%;
}
.about_landing .landing_img {
  padding-right: 4rem;
  position: relative;
}
@media (max-width: 767px) {
  .about_landing .landing_img {
    display: none;
  }
}
.about_landing .landing_img .side-img {
  border-radius: 30px 0 0 0;
  -webkit-border-radius: 30px 0 0 0;
  -moz-border-radius: 30px 0 0 0;
  -ms-border-radius: 30px 0 0 0;
  -o-border-radius: 30px 0 0 0;
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 150px;
  border: 5px solid #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.about_landing .landing_img .side-img img {
  border-radius: 30px 0 0 0;
  -webkit-border-radius: 30px 0 0 0;
  -moz-border-radius: 30px 0 0 0;
  -ms-border-radius: 30px 0 0 0;
  -o-border-radius: 30px 0 0 0;
}
@media (max-width: 767px) {
  .about_landing .landing_img .side-img {
    display: none;
  }
}
.about_landing .about_content {
  padding-right: 5rem;
  padding-left: 2rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about_landing .about_content {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .about_landing .about_content {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .about_landing .about_content {
    padding: 0;
  }
}
.about_landing .about_content h2 {
  color: #000;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .about_landing .about_content h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about_landing .about_content h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .about_landing .about_content h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .about_landing .about_content h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.about_landing .about_content h2 span {
  color: #F7941D;
}
.about_landing .about_content .black {
  color: #000;
  font-weight: 500;
}

.highlighted_products {
  background: #F6F5F3;
  width: 100%;
}
.highlighted_products h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #F7941D;
}
@media (max-width: 480px) {
  .highlighted_products h4 {
    font-size: 0.875rem;
  }
}
.highlighted_products h3 {
  color: #000;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .highlighted_products h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .highlighted_products h3 {
    font-size: 1.4rem;
  }
}
.highlighted_products .highlighted_box {
  border: 1px solid #E9DDDD;
  position: relative;
}
.highlighted_products .highlighted_box::before {
  transition: all 0.4s ease-in-out;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.087359944) 27%, rgba(0, 0, 0, 0.7596288515) 100%);
}
.highlighted_products .highlighted_box .product_name {
  background: #F7941D;
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 0 5px;
  color: #fff;
  font-size: 0.813rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .highlighted_products .highlighted_box .product_name {
    font-size: 0.75rem;
  }
}
.highlighted_products .highlighted_box .product_type {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  position: absolute;
  left: 15px;
  bottom: 15px;
}
@media (max-width: 480px) {
  .highlighted_products .highlighted_box .product_type {
    left: 10px;
    font-size: 1rem;
  }
}
.highlighted_products .highlighted_box .product_type::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 40px;
  background: #F7941D;
  height: 3px;
}
.highlighted_products .highlighted_box .large_one {
  font-size: 1rem;
  padding: 0 10px;
}
.highlighted_products .highlighted_box .large_two {
  font-size: 1.2rem;
}
.highlighted_products .highlighted_box:hover::before {
  height: 100%;
}

.all_products_bg {
  width: 100%;
}
.all_products_bg .heading {
  text-align: center;
}
.all_products_bg .heading h3 {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .all_products_bg .heading h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .all_products_bg .heading h3 {
    font-size: 1.4rem;
  }
}
.all_products_bg .heading p {
  text-align: center;
}
.all_products_bg .category_box {
  transition: all 0.4s ease-in-out;
  border: 5px solid #F6EEEE;
  position: relative;
  overflow: hidden;
}
.all_products_bg .category_box::before {
  transition: all 0.4s ease-in-out;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.087359944) 27%, rgba(0, 0, 0, 0.7596288515) 100%);
}
.all_products_bg .category_box .product_name {
  transition: all 0.4s ease-in-out;
  position: absolute;
  width: 100%;
  background: #F7941D;
  padding: 5px 10px;
  left: 0;
  bottom: 0;
  transform: translateY(80px);
}
@media (max-width: 480px) {
  .all_products_bg .category_box .product_name {
    transform: translateY(0px);
    background: rgba(247, 148, 29, 0.8705882353);
  }
}
.all_products_bg .category_box .product_name h4 {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .all_products_bg .category_box .product_name h4 {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .all_products_bg .category_box .product_name h4 {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .all_products_bg .category_box .product_name h4 {
    font-size: 1rem;
  }
}
.all_products_bg .category_box .product_name .btn_3 {
  justify-content: flex-start;
  color: #fff;
  margin-top: 10px;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .all_products_bg .category_box .product_name .btn_3 i {
    color: #fff;
  }
}
.all_products_bg .category_box .product_name p {
  display: -webkit-box;
  font-size: 0.813rem;
  color: #fff;
  height: 45px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}
.all_products_bg .category_box:hover::before {
  opacity: 1;
}
.all_products_bg .category_box:hover .product_name {
  transform: translateY(0px);
  background: none;
}
@media (max-width: 480px) {
  .all_products_bg .category_box:hover .product_name {
    background: #F7941D;
  }
}
.all_products_bg .category_box:hover .btn_3:hover {
  color: #fff !important;
  letter-spacing: 0.5;
}
.all_products_bg .category_box .fancybox-content {
  padding: 0;
}

.our_services {
  width: 100%;
  background: #F0F0F0;
}
.our_services .heading {
  align-items: center;
}
.our_services .heading h3 {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  min-width: 200px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .our_services .heading h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .our_services .heading h3 {
    font-size: 1.4rem;
  }
}
.our_services .heading p {
  text-align: center;
}
.our_services .heading_2 {
  align-items: center;
}
.our_services .heading_2 h3 {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  min-width: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .our_services .heading_2 h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .our_services .heading_2 h3 {
    font-size: 1.4rem;
  }
}
.our_services .supplys {
  display: flex;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.our_services .supplys .lefts {
  width: 40%;
  background: #fff;
  padding: 1rem;
  overflow: hidden;
}
.our_services .supplys .lefts img {
  transition: all 0.4s ease-in-out;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.our_services .supplys .rights {
  width: 60%;
  padding: 1rem;
  background: #F6F5F3;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.our_services .supplys .rights h3 {
  font-size: 1rem;
  color: #000;
  display: -webkit-box;
  height: 40px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}
.our_services .supplys .rights .btn_3 {
  align-self: flex-end;
  font-size: 0.875rem;
}
.our_services .supplys .rights ul {
  padding: 0;
  margin-bottom: 5px;
}
.our_services .supplys .rights ul li {
  transition: all 0.4s ease-in-out;
  list-style: none;
  padding: 2px 0px 2px 20px;
  color: #808080;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.our_services .supplys .rights ul li a {
  color: #808080;
}
.our_services .supplys .rights ul li::before {
  content: "\f285";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 0.813rem;
  color: #333333;
}
.our_services .supplys .rights ul li:hover a {
  color: #F7941D;
}
.our_services .supplys .rights ul li:hover .lefts {
  background: #F7941D;
}
.our_services .supplys:hover img {
  transform: scale(1.2);
}
.our_services .category_box {
  transition: all 0.4s ease-in-out;
  border: 5px solid #F6EEEE;
  position: relative;
}
.our_services .category_box .img_box {
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
.our_services .category_box .img_box img {
  transition: all 0.4s ease-in-out;
}
.our_services .category_box .img_box::before {
  transition: all 0.4s ease-in-out;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.087359944) 27%, rgba(0, 0, 0, 0.7596288515) 100%);
}
.our_services .category_box .product_name {
  transition: all 0.4s ease-in-out;
  position: relative;
  background: #fff;
  padding: 1rem;
  transform: translateY(-10px);
  width: 95%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
@media (max-width: 767px) {
  .our_services .category_box .product_name {
    width: 100%;
  }
}
.our_services .category_box .product_name h4 {
  color: #333333;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .our_services .category_box .product_name h4 {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .our_services .category_box .product_name h4 {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .our_services .category_box .product_name h4 {
    font-size: 1rem;
  }
}
.our_services .category_box .product_name .btn_3 {
  justify-content: flex-start;
  color: #F7941D;
  margin-top: 10px;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .our_services .category_box .product_name .btn_3 i {
    color: #000;
  }
}
.our_services .category_box .product_name p {
  display: -webkit-box;
  font-size: 0.813rem;
  height: 45px;
  -webkit-line-clamp: 32;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}
.our_services .category_box:hover .img_box img {
  transform: scale(1.2);
}
.our_services .category_box:hover .img_box::before {
  opacity: 1;
}
.our_services .category_box:hover .btn_3:hover {
  letter-spacing: 0.5;
}
.our_services .category_box .fancybox-content {
  padding: 0;
}
.our_services .category_box_2 {
  transition: all 0.4s ease-in-out;
  border: 5px solid #F6EEEE;
  position: relative;
}
.our_services .category_box_2 .img_box {
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
.our_services .category_box_2 .img_box img {
  transition: all 0.4s ease-in-out;
}
.our_services .category_box_2 .img_box::before {
  transition: all 0.4s ease-in-out;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.087359944) 27%, rgba(0, 0, 0, 0.7596288515) 100%);
}
.our_services .category_box_2 .img_box .heading {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1rem;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(247, 148, 29, 0.7) 100%);
}
.our_services .category_box_2 .img_box .heading h4 {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .our_services .category_box_2 .img_box .heading h4 {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .our_services .category_box_2 .img_box .heading h4 {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .our_services .category_box_2 .img_box .heading h4 {
    font-size: 1rem;
  }
}
.our_services .category_box_2 .product_name {
  transition: all 0.4s ease-in-out;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 1rem;
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.our_services .category_box_2 .product_name p {
  display: -webkit-box;
  font-size: 0.813rem;
  height: 45px;
  -webkit-line-clamp: 32;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.our_services .category_box_2 .product_name .btn_3 {
  color: #000;
  text-align: left;
  justify-content: flex-start;
}
.our_services .category_box_2:hover .img_box img {
  transform: scale(1.1);
}
.our_services .category_box_2:hover .img_box::before {
  opacity: 1;
}
.our_services .category_box_2:hover .btn_3:hover {
  letter-spacing: 0.5;
}
.our_services .category_box_2 .fancybox-content {
  padding: 0;
}

.loader {
  align-content: center;
  margin-top: 10px;
}
.loader .spinner-border {
  border: var(--bs-spinner-border-width) solid #F7941D;
  border-right-color: transparent;
}
.loader .sr-only {
  padding-left: 10px;
}

.product_detail {
  width: 100%;
}
.product_detail .listing {
  width: 100%;
}
.product_detail .listing ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product_detail .listing ul li {
  transition: all 0.4s ease-in-out;
  padding: 4px 0px 4px 25px;
  list-style: none;
  font-size: 0.875rem;
  width: 100%;
  font-weight: 400;
  position: relative;
}
.product_detail .listing ul li::before {
  content: "\f134";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 1rem;
  color: #F7941D;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product_detail .listing ul li {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .product_detail .listing ul li {
    font-size: 0.813rem;
  }
}
.product_detail .listing ul li a {
  color: #8d8888 !important;
  position: relative;
}
.product_detail .listing ul li a:hover {
  color: #F7941D !important;
}
.product_detail .products_content {
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .product_detail .products_content {
    padding-right: 0;
  }
}
.product_detail h2 {
  color: #000;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .product_detail h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .product_detail h2 {
    font-size: 1.4rem;
  }
}
.product_detail h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #F7941D;
}
@media (max-width: 480px) {
  .product_detail h3 {
    font-size: 0.875rem;
  }
}
.product_detail .products_supply {
  border: 1px solid #ECE9E9;
  background: #fff;
  padding: 1rem;
  position: relative;
}
.product_detail .products_supply::before {
  transition: all 0.4s ease-in-out;
  opacity: 0;
  background: rgb(247, 148, 29);
  background: linear-gradient(180deg, rgba(247, 148, 29, 0.3058473389) 0%, rgba(247, 148, 29, 0.6896008403) 100%);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.product_detail .products_supply .popup_icon {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  opacity: 0;
  background: #333333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .product_detail .products_supply .popup_icon {
    opacity: 1;
  }
}
.product_detail .products_supply .name {
  transition: all 0.4s ease-in-out;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #F7941D;
  font-size: 1rem;
  width: 100%;
  left: 0;
  font-weight: 500;
  color: #fff;
  padding: 10px;
}
@media (max-width: 480px) {
  .product_detail .products_supply .name {
    font-size: 0.813rem;
    padding: 5px 10px;
  }
}
.product_detail .products_supply:hover::before {
  opacity: 1;
}
.product_detail .products_supply:hover .name {
  background: #fff;
  color: #000;
}
.product_detail .products_supply:hover .popup_icon {
  opacity: 1;
}
.product_detail .lines {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
}
.product_detail .img-box {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 5px solid #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.product_detail .img-box img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.product_detail .heading {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #FFF2E1;
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}
.product_detail .heading h2 {
  color: #000;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .product_detail .heading h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .product_detail .heading h2 {
    font-size: 1.4rem;
  }
}
.product_detail .heading p {
  text-align: center;
}
.product_detail .industrial h3 {
  color: #000;
  font-weight: 700;
  font-size: 1.85rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .product_detail .industrial h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .product_detail .industrial h3 {
    font-size: 1.4rem;
  }
}
.product_detail .industrial h4 {
  color: #000;
  font-weight: 600;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .product_detail .industrial h4 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .product_detail .industrial h4 {
    font-size: 1.2rem;
  }
}
.product_detail .black {
  color: #000;
  font-weight: 500;
}
.product_detail .products_two {
  border: 1px solid #ECE9E9;
  background: #fff;
  position: relative;
}
.product_detail .products_two .heading_box {
  transition: all 0.4s ease-in-out;
  width: 100%;
  background: #eef1f4;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #333333;
}
@media (max-width: 480px) {
  .product_detail .products_two .heading_box {
    font-size: 0.813rem;
    padding: 0.3rem;
  }
}
.product_detail .products_two:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.product_detail .products_two:hover .heading_box {
  background: #F7941D;
  color: #fff;
}
.product_detail .gallery {
  width: 100%;
  margin-bottom: 1.5rem;
}
.product_detail .gallery .products {
  border: 1px solid #ECE9E9;
  background: #fff;
  position: relative;
  height: 100%;
  display: block;
}
.product_detail .gallery .products::before {
  transition: all 0.4s ease-in-out;
  opacity: 0;
  background: rgb(247, 148, 29);
  background: linear-gradient(180deg, rgba(247, 148, 29, 0) 0%, rgba(0, 0, 0, 0.6896008403) 100%);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.product_detail .gallery .products .popup_icon {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  opacity: 0;
  background: #333333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .product_detail .gallery .products .popup_icon {
    opacity: 1;
  }
}
.product_detail .gallery .products:hover::before {
  opacity: 1;
}
.product_detail .gallery .products:hover .popup_icon {
  background: #F7941D;
  opacity: 1;
}
.product_detail .category_sec {
  background: #F6F6F6;
  border: 1px solid #E0D4D4;
  padding: 1.5rem;
  position: relative;
  margin-bottom: 1.5rem;
}
.product_detail .category_sec h3 {
  color: #F7941D;
  font-weight: 600;
  font-size: 1.5rem;
}
.product_detail .category_sec .products {
  border: 1px solid #ECE9E9;
  background: #fff;
  padding: 1rem;
  position: relative;
}
.product_detail .category_sec .products::before {
  transition: all 0.4s ease-in-out;
  opacity: 0;
  background: rgb(247, 148, 29);
  background: linear-gradient(180deg, rgba(247, 148, 29, 0.3058473389) 0%, rgba(247, 148, 29, 0.6896008403) 100%);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.product_detail .category_sec .products .popup_icon {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  opacity: 0;
  background: #333333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .product_detail .category_sec .products .popup_icon {
    opacity: 1;
  }
}
.product_detail .category_sec .products .types {
  transition: all 0.4s ease-in-out;
  position: absolute;
  background: #333333;
  font-size: 0.875rem;
  color: #fff;
  padding: 0 10px;
  left: 5px;
  top: -5px;
}
.product_detail .category_sec .products .name {
  transition: all 0.4s ease-in-out;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #F7941D;
  font-size: 0.875rem;
  width: 100%;
  left: 0;
  color: #fff;
  padding: 0px 10px;
}
.product_detail .category_sec .products .name_2 {
  transition: all 0.4s ease-in-out;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7008053221) 0%, rgba(247, 148, 29, 0.7008053221) 100%);
  font-size: 0.875rem;
  width: 100%;
  left: 0;
  color: #fff;
  padding: 10px 10px;
}
.product_detail .category_sec .products:hover::before {
  opacity: 1;
}
.product_detail .category_sec .products:hover .types {
  background: #F7941D;
  color: #fff;
}
.product_detail .category_sec .products:hover .name {
  background: #fff;
  color: #000;
}
.product_detail .category_sec .products:hover .popup_icon {
  opacity: 1;
}
.product_detail .lists_product {
  background: #F7941D;
  padding: 1.5rem;
  margin-bottom: 15px;
  position: sticky;
  top: 76px;
}
@media (max-width: 1400px) {
  .product_detail .lists_product {
    padding: 0.875rem;
  }
}
.product_detail .lists_product h4 {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .product_detail .lists_product h4 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .product_detail .lists_product h4 {
    font-size: 1rem;
  }
}
.product_detail .lists_product h5 {
  color: #333333;
}
.product_detail .lists_product ul {
  padding: 0;
}
.product_detail .lists_product ul li {
  transition: all 0.4s ease-in-out;
  padding: 8px 10px 8px 25px;
  content: "";
  list-style: none;
  position: relative;
  color: #fff;
  border-bottom: 1px dashed #884d06;
}
.product_detail .lists_product ul li:last-child {
  border-bottom: 0;
}
.product_detail .lists_product ul li a {
  color: #fff !important;
}
.product_detail .lists_product ul li::before {
  content: "\f234";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: 0px;
  top: 8px;
  font-size: 1.2rem;
  color: #fff;
}

.fancybox-content {
  max-width: 500px;
  padding: 10px;
}
.fancybox-content .heading {
  padding: 10px;
}
.fancybox-content .heading h2 {
  margin-bottom: 0;
}

.apparals {
  background: #FFF8E8;
  padding: 0;
  position: relative;
}
@media (max-width: 767px) {
  .apparals {
    padding: 2.5rem 0;
  }
}
.apparals::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 10%;
  right: 0;
  background: #F7EED3;
}
@media (max-width: 992px) {
  .apparals::before {
    background: #FFF8E8;
  }
}
@media (max-width: 767px) {
  .apparals::before {
    display: none;
  }
}
.apparals .left_side {
  background: #FFF8E8;
  padding: 3rem 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .apparals .left_side {
    padding: 3rem 2rem;
    background: #EFE8D1;
  }
}
@media (max-width: 480px) {
  .apparals .left_side {
    background: none;
    margin-bottom: 1.5rem;
    padding: 0;
  }
}
.apparals .left_side .img_boxes {
  position: relative;
  overflow: hidden;
  background: #333333;
}
.apparals .left_side .img_boxes img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.apparals .left_side .img_boxes .rotated-text {
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 20px;
  bottom: 0;
  display: inline-block;
  transform-origin: top left;
  transform: rotate(-90deg);
  font-size: 2.2rem;
  font-weight: 600;
  color: #F7941D;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .apparals .left_side .img_boxes .rotated-text {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .apparals .left_side .img_boxes .rotated-text {
    font-size: 1.4rem;
    left: 10px;
    bottom: -10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .apparals .left_side .img_boxes .rotated-text {
    font-size: 1.6rem;
    left: 5px;
    bottom: -10px;
  }
}
@media (max-width: 480px) {
  .apparals .left_side .img_boxes .rotated-text {
    font-size: 2rem;
    left: 20px;
  }
}
.apparals .left_side .img_boxes .explore {
  position: absolute;
  right: 15px;
  bottom: 20px;
  padding: 0.2rem 0.5rem;
  font-size: 1rem;
  color: #fff;
  display: flex;
  opacity: 0;
  background: #333333;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .apparals .left_side .img_boxes .explore {
    font-size: 0.813rem;
    bottom: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .apparals .left_side .img_boxes .explore {
    font-size: 0.813rem;
    bottom: 10px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .apparals .left_side .img_boxes .explore {
    opacity: 1;
  }
}
.apparals .left_side .img_boxes .explore a {
  color: #000;
}
.apparals .left_side .img_boxes .explore i {
  padding-left: 0.5rem;
}
.apparals .left_side .img_boxes:hover .rotated-text {
  text-shadow: 1px 6px 0px rgba(251, 176, 50, 0.25);
}
.apparals .left_side .img_boxes:hover .explore {
  opacity: 1;
}
.apparals .left_side .img_boxes:hover img {
  opacity: 0.9;
  transform: scale(1.1);
}
.apparals .left_side .boxes {
  position: relative;
  overflow: hidden;
}
.apparals .left_side .boxes img {
  width: 100%;
}
.apparals .left_side .boxes::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.apparals .left_side .boxes .heading {
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 0.2rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #F7941D;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .apparals .left_side .boxes .heading {
    font-size: 0.813rem;
    line-height: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .apparals .left_side .boxes .heading {
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .apparals .left_side .boxes .heading {
    font-size: 1.6rem;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .apparals .left_side .boxes .heading {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
.apparals .left_side .boxes:hover .heading {
  bottom: 5px;
  background: #F7941D;
  color: #333333;
}
.apparals .left_side .boxes:hover::before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.apparals .rights {
  background: #F7EED3;
}
@media (max-width: 480px) {
  .apparals .rights {
    background: none;
  }
}

.era_list {
  /* Show tooltip on hover */
}
.era_list h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}
.era_list .main_head {
  background: #F7941D;
  width: 100%;
  color: #fff;
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.era_list .accordion-header {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
}
.era_list .accordion-header a {
  color: #000;
}
.era_list .accordion-header:hover {
  background-color: #e0e0e0;
}
.era_list .accordion-header i {
  transition: transform 0.3s ease;
}
.era_list .accordion-header.collapsed i {
  transform: rotate(0deg);
}
.era_list .accordion-header:not(.collapsed) i {
  transform: rotate(180deg);
}
.era_list .active {
  background-color: #f8efc6;
}
.era_list .accordion-body {
  padding: 0;
}
.era_list .accordion-body ul {
  list-style: none;
  padding-left: 0;
}
.era_list .accordion-body ul li {
  width: 100%;
}
.era_list .accordion-body ul li a {
  padding: 3px 25px;
  text-decoration: none;
  color: #333333;
  width: 100%;
  display: block;
}
.era_list .accordion-body ul li a:hover {
  color: #000;
  background: #FFE7CA;
}
.era_list .list_box {
  width: 100%;
  border: 1px solid #d3d2d2;
  overflow: hidden;
}
.era_list .list_box .imgbox {
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.era_list .list_box .imgbox img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.era_list .list_box .content {
  min-height: 100px;
  background: rgb(245, 238, 207);
  background: linear-gradient(180deg, rgb(245, 238, 207) 0%, rgb(250, 240, 194) 100%);
  padding: 2rem 1rem 1rem;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .era_list .list_box .content {
    min-height: 80px;
  }
}
@media (max-width: 767px) {
  .era_list .list_box .content {
    min-height: 80px;
  }
}
.era_list .list_box .content .colors {
  position: absolute;
  width: 90%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.5rem;
}
.era_list .list_box .content .colors ul {
  display: flex;
  justify-content: center;
}
.era_list .list_box .content .colors ul li {
  list-style: none;
  padding: 4px 0px;
}
.era_list .list_box .content .colors ul li .color_code {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 2px;
  border: 2px solid #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .era_list .list_box .content .colors ul li .color_code {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 480px) {
  .era_list .list_box .content .colors ul li .color_code {
    width: 25px;
    height: 25px;
  }
}
.era_list .list_box .content h4 {
  font-size: 1rem;
  text-align: center;
  display: -webkit-box;
  height: 35px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .era_list .list_box .content h4 {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .era_list .list_box .content h4 {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .era_list .list_box .content h4 {
    font-size: 0.875rem;
  }
}
.era_list .list_box:hover .imgbox {
  border: 10px solid #f5eecf;
}
.era_list .list_box:hover .imgbox img {
  opacity: 0.9;
  transform: scale(1.1);
}
.era_list .tooltip-container {
  position: relative;
  display: inline-block;
}
.era_list .hover-image {
  width: 150px;
  height: auto;
}
.era_list .tooltip {
  visibility: hidden;
  background-color: #F7941D;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 2px 5px;
  position: absolute;
  font-size: 0.813rem;
  z-index: 1;
  top: -20px;
  /* Position above the image */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}
.era_list .tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.era-detail {
  width: 100%;
  position: relative;
  padding: 40px 0px;
  /* Show tooltip on hover */
}
.era-detail .specification {
  width: 100%;
  width: 100%;
}
.era-detail .specification ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.era-detail .specification ul li {
  transition: all 0.4s ease-in-out;
  padding: 4px 0px 4px 25px;
  list-style: none;
  font-size: 0.875rem;
  width: 100%;
  font-weight: 400;
  position: relative;
}
.era-detail .specification ul li::before {
  content: "\f134";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 1rem;
  color: #F7941D;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .era-detail .specification ul li {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .era-detail .specification ul li {
    font-size: 0.813rem;
  }
}
.era-detail .specification ul li a {
  color: #8d8888 !important;
  position: relative;
}
.era-detail .specification ul li a:hover {
  color: #F7941D !important;
}
.era-detail .specification ul li {
  color: #808080;
}
.era-detail .carousel-inner {
  overflow: visible;
}
.era-detail h1 {
  color: #000;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .era-detail h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .era-detail h1 {
    font-size: 1.4rem;
  }
}
.era-detail h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #F7941D;
}
@media (max-width: 480px) {
  .era-detail h3 {
    font-size: 0.875rem;
  }
}
.era-detail .detail_content {
  padding-left: 1.5rem;
}
@media (max-width: 768px) {
  .era-detail .detail_content {
    padding-left: 0px;
  }
}
.era-detail .colors {
  position: relative;
  width: 100%;
  padding: 0;
}
.era-detail .colors ul {
  display: flex;
  justify-content: flex-start;
}
.era-detail .colors ul li {
  list-style: none;
  padding: 4px 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.era-detail .colors ul li .color_code {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 2px;
  border: 2px solid #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .era-detail .colors ul li .color_code {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 480px) {
  .era-detail .colors ul li .color_code {
    width: 25px;
    height: 25px;
  }
}
.era-detail .colors ul li.active .color_code {
  border-color: #F7941D;
  transform: scale(1.1);
}
.era-detail .carousel-wrap {
  padding: 0px 0px 120px;
  border: 1px solid #eae8e8;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #f0f3f3;
}
.era-detail .carousel-indicators [data-bs-target] {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  width: 100px;
  height: 80px;
  cursor: pointer;
  margin: 0 10px;
}
.era-detail .carousel-item {
  position: relative;
}
.era-detail .carousel-item > img {
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.era-detail .carousel-indicators {
  bottom: auto;
  top: 100%;
  margin: 10px 0 0;
}
.era-detail .carousel-control-next-icon {
  background-color: #F7941D;
  width: 25px;
  right: 10px;
  position: absolute;
}
.era-detail .carousel-control-prev-icon {
  background-color: #F7941D;
  left: 10px;
  width: 25px;
  position: absolute;
}
.era-detail .carousel-control-next,
.era-detail .carousel-control-prev {
  width: 25px;
}
.era-detail .img-thumbnail img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
  transform: scale(1);
  outline: 1px solid rgb(43, 42, 42);
}
.era-detail .img-thumbnail.active img {
  opacity: 1;
  transform: scale(1.1);
  position: relative;
  z-index: 2;
  outline: 1px solid #F7941D;
}
.era-detail .tooltip-container {
  position: relative;
  display: inline-block;
}
.era-detail .hover-image {
  width: 150px;
  height: auto;
}
.era-detail .tooltip {
  visibility: hidden;
  background-color: #F7941D;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 2px 5px;
  position: absolute;
  font-size: 0.813rem;
  z-index: 1;
  top: -20px;
  /* Position above the image */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}
.era-detail .tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.product_details {
  background: #FAF7F0;
}
.product_details .colors {
  margin: 20px 0px;
}
.product_details .colors ul {
  display: flex;
  flex-wrap: wrap;
}
.product_details .colors ul li {
  list-style: none;
  padding: 5px;
  color: #333333;
  font-weight: 600;
  font-size: 1rem;
}
.product_details .colors ul li span {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border: 1px solid #F7941D;
  padding: 5px 10px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 400;
}
.product_details .specification {
  width: 100%;
  width: 100%;
}
.product_details .specification ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product_details .specification ul li {
  transition: all 0.4s ease-in-out;
  padding: 4px 0px 4px 25px;
  list-style: none;
  font-size: 0.875rem;
  width: 100%;
  font-weight: 400;
  position: relative;
}
.product_details .specification ul li::before {
  content: "\f134";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 1rem;
  color: #F7941D;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product_details .specification ul li {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .product_details .specification ul li {
    font-size: 0.813rem;
  }
}
.product_details .specification ul li a {
  color: #8d8888 !important;
  position: relative;
}
.product_details .specification ul li a:hover {
  color: #F7941D !important;
}

.no-result-found {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.no-result-found .no_data {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .no-result-found .no_data {
    width: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .no-result-found .no_data {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .no-result-found .no_data {
    width: 80%;
  }
}
.no-result-found .no_data img {
  width: 80%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .no-result-found .no_data img {
    width: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .no-result-found .no_data img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .no-result-found .no_data img {
    width: 100%;
  }
}
.no-result-found .no_data h2 {
  text-align: center;
  font-weight: 600;
  color: #F7941D;
}
.no-result-found .no_data h2 span {
  font-weight: 400;
  color: #000;
}

.filter {
  position: fixed;
  left: 10px;
  bottom: 20px;
  z-index: 999;
  display: none;
}
@media (max-width: 767px) {
  .filter {
    display: block;
  }
}
.filter .btn_1 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: rgb(10, 10, 10);
  background: linear-gradient(180deg, rgb(10, 10, 10) 0%, rgb(71, 71, 70) 100%);
  padding: 6px 10px;
  border: 1px solid #615F5C;
}

.offcanvas {
  background: #F7941D;
}
.offcanvas .offcanvas-header {
  padding-bottom: 0;
}
.offcanvas .offcanvas-header h5 {
  color: #fff !important;
}
.offcanvas .offcanvas-body {
  padding-top: 0;
}
.offcanvas .offcanvas-body .lists_product {
  background: #F7941D;
}
.offcanvas .offcanvas-body .lists_product ul {
  padding: 0;
}
.offcanvas .offcanvas-body .lists_product ul li {
  transition: all 0.4s ease-in-out;
  padding: 5px 10px 8px 25px;
  content: "";
  list-style: none;
  position: relative;
  color: #fff;
  border-bottom: 1px dashed #884d06;
}
.offcanvas .offcanvas-body .lists_product ul li:last-child {
  border-bottom: 0;
}
.offcanvas .offcanvas-body .lists_product ul li a {
  color: #fff !important;
}
.offcanvas .offcanvas-body .lists_product ul li::before {
  content: "\f234";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: 0px;
  top: 8px;
  font-size: 1.2rem;
  color: #fff;
}
.offcanvas .offcanvas-body .main_head {
  background: #D17A12;
  width: 100%;
  color: #fff;
  padding: 0.6rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.offcanvas .offcanvas-body .accordion-header {
  padding: 10px 15px;
  cursor: pointer;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
}
.offcanvas .offcanvas-body .accordion-header:hover {
  background-color: #e0e0e0;
}
.offcanvas .offcanvas-body .accordion-header i {
  transition: transform 0.3s ease;
}
.offcanvas .offcanvas-body .accordion-header.collapsed i {
  transform: rotate(0deg);
}
.offcanvas .offcanvas-body .accordion-header:not(.collapsed) i {
  transform: rotate(180deg);
}
.offcanvas .offcanvas-body .accordion-body {
  padding: 0;
}
.offcanvas .offcanvas-body .accordion-body ul {
  list-style: none;
  padding-left: 0;
}
.offcanvas .offcanvas-body .accordion-body ul li {
  width: 100%;
}
.offcanvas .offcanvas-body .accordion-body ul li a {
  padding: 3px 25px;
  text-decoration: none;
  color: #333333;
  width: 100%;
  display: block;
}
.offcanvas .offcanvas-body .accordion-body ul li a:hover {
  color: #000;
  background: #FFE7CA;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.swiper_large_preview {
  margin: 5px;
  border: 1px solid #ebeaea;
}

.swiper-slide img {
  display: block;
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
}

.fullbg {
  padding: 0.5rem;
  background: #f0f3f3;
  border: 1px solid #eae8e8;
}

.swiper {
  width: 100%;
}

.swiper_thumb .swiper-slide {
  opacity: 0.7;
}

.swiper_thumb .swiper-slide:hover {
  opacity: 1;
}

.swiper_thumb .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #F7941D;
}

.swiper-slide {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.swiper-slide img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: block;
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #F7941D;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 9;
}

.swiper-button-next,
.swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: 600;
}

.swiper-button-prev,
.swiper-button-next::after {
  font-size: 1.5rem;
  font-weight: 600;
}

.swiper-button-next {
  right: 5px;
}

.swiper-button-prev {
  left: 5px;
}

.swiper-button-next:hover {
  color: #fff;
  background: #F7941D;
}

.swiper-button-prev:hover {
  color: #fff;
  background: #F7941D;
}

.small-prev, .small-next {
  color: #F7941D;
  background: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: 9;
}

.small-next::after, .small-prev::after {
  font-size: 1rem !important;
}

.small-next {
  right: 5px;
  top: 60%;
}

.small-prev {
  left: 5px;
  top: 60%;
}

.plus {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: rgba(255, 255, 255, 0.6980392157);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  width: 50px;
  height: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.plus i {
  font-size: 3rem;
  color: #F7941D;
}/*# sourceMappingURL=main.css.map */