html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
table {
  border-collapse: collapse;
}

caption {
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}
/*fonts*/

html,body{
    scroll-behavior: smooth;
}
#wrapper{
  min-width: 100%;
  min-height: 100%;
}
.container{
  width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}
body{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}
h1,h2,h3,h4,h5,h6{
  font-family: "Poppins", sans-serif;
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
a:focus,
a:hover{
  outline: none;
}
img{
  display: block;
  max-width: 100%;
}
h1{
  font-size: 50px;
  line-height: 1.2;
  font-weight: 600;
}
h2{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
}
.btn {
  background: #a13c10;
  color: #fff;
  cursor: pointer;
  border: none !important;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 25px;
  line-height: 52px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
}
.btn:hover{
  background:#15174a;
}
.btn_blue{
  background:#15174a;
}
.btn_blue:hover{
  background: #a13c10;
}
.btn_white{
  background:#fff;
  color: #28409a;
}
.btn_white:hover{
  background: #28409a;
  color: #fff
}
header {
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  padding: 15px 0;
}
header.sticky {
  position: fixed;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}
.header_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.logo a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo a img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
}
.logo strong{
  font-size: 20px;
  font-weight: bolder;
  color: #15174a;
  text-transform: uppercase;
  margin-left: 10px;
}
header nav  ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav  ul a{
  color: #000;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
}
header nav  ul a:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 5px;
  margin: auto;
  background: #a13c10;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
header nav  ul li{
  margin: 0 20px;
}
.header_rht .btn{
  margin-left: 20px;
}
header nav  ul a:hover,
header nav  ul a.active{
  color:#a13c10;
}
header nav  ul a:hover:after,
header nav  ul a.active:after{
  width: 100%;
}
.banner_slide{
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f9f9f9;
  display: none;
}
.banner_slide:first-child{
  display: block;
}
.banner_img:after,
.banner_img{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.banner_img img{
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1 !important;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.banner_img [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-transition: all 0.5s ease-in-out 0.3s;
  -o-transition: all 0.5s ease-in-out 0.3s;
  transition: all 0.5s ease-in-out 0.3s;
}
/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
  -webkit-animation-direction: revert;
          animation-direction: revert;
}

@-webkit-keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
  -webkit-animation-direction: revert;
          animation-direction: revert;
}

.banner_cnt {
  position: relative;
  z-index: 1;
  color: #fff;
  min-height: 768px;
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner_img:after{
  content: '';
  background: #000;
  opacity: 0.5;
}
.banner_cnt h5{
  font-size: 24px;
  line-height: 1.2;
  font-weight: 200;
  margin-bottom: 15px;
}
.banner_cnt h1{
  text-transform: uppercase;
  margin-bottom: 20px;
}
.banner_cnt h1 strong{
  font-weight: 600;
}
.banner_cnt p{
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 26px;
}
.text-hightlight {
  font-weight: 400;
  color: #a13c10  !important;
}

.ha_imgs_blk{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.home_about{
  padding: 80px 0;
}
.ha_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.haimg_ploaceholder {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 - 20px);
          flex: 0 0 calc(100% / 2 - 20px);
  height: 200px;
  margin: 10px;
  border-radius: 10px;
  background: #ccc;
  overflow: hidden;
}
.haimg_ploaceholder img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;

}
.ha_cnt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding-right: 30px;
}
.sec_title {
  font-size: 18px;
  text-transform: uppercase;
  color: #a13c10;
  margin: 0 0 10px;
  font-weight: 500;
}
.ha_cnt h2,
.ha_cnt p{
  margin-bottom: 20px;
}
.ha_cnt h6{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.ha_cnt ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ha_cnt ul li{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-bottom: 20px;
  padding: 0 15px 0 20px;
  position: relative;
  font-weight: 500;
}
.ha_cnt ul li span{
  display: inline-block;
}
.ha_cnt ul li:before{
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  background: #a13c10;
  left: 0;
  top: 7px;
  border-radius: 20px;
}
.our_products{
  background: #f4f5f5;
  padding: 100px 0;
}
.op_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}
.op_slider .slick-track {
  padding: 50px 0;
}
.product_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  margin: 0 15px;
}
.product_card{
  display: block;
  color: #000;
}
.product_img {
  height: 230px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #ccc;
}
.product_img img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.title{
  position: relative;
  text-align: left;
}
.title:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 2px;
  background: #a13c10;
}
.title span{
  background: #fff;
  display: inline-block;
  padding: 0 50px 0 0;
  position: relative;
  z-index: 1;
}
.our_products .title:after{
  display: none;
}
.our_products .title span{
  background: #f4f5f5;
}
.product_dis {
  display: block;
  background: #fff;
  border-radius: 10px;
  margin: -30px 15px 0;
  position: relative;
  padding: 20px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.product_dis strong{
  font-size: 18px;
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}
.product_card:hover .product_dis{
  background: #a13c10;
  color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.product_card:hover .product_img img{
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.slick-arrow {
  left: auto;
  right: 15px;
  background: #a13c10 url(../images/slick-arrow-prev.png) no-repeat center !important;
  background-size: 20px !important;
  top: -20px !important;
  width: 50px;
  height: 50px;
}
.slick-arrow:before{
  display: none;
}
.slick-arrow:hover{
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.slick-prev {
  right: 80px;
  background: #a13c10 url(../images/slick-arrow-next.png) no-repeat center !important;
  background-size: 20px !important;
}
.gallery .btn,
.our_products .btn{
  display: block;
  margin: 20px auto 0;
  min-width: 150px;
  width: 150px !important;
}
.gallery{
  padding: 100px 0;
}
.gallery_images{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
.gallery_images .product_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(20% - 20px);
          flex: 0 0 calc(20% - 20px);
  height: 200px;
  margin: 10px;
}
.testmonials_wrapper  h2{
  text-align: left;
}

.ourbest_wrapper{
  background: url(../images/image949.jpg) no-repeat left top;
  background-size:50% 100%;
  background-attachment: fixed;
  position: relative;
}
.ourbest_wrapper:after{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #000;
}
.ob_cnt{
  width: 50%;
  min-height: 600px;
  margin-left: auto;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: left;
}
.ob_cnt h6 {
  color: #cca274;
  font-size: 20px;
  margin-bottom: 10px;
}
.ob_cnt h2,
.ob_cnt p{
  margin-bottom: 20px;
}
.ob_cnt ul{
  margin-top: 40px;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #cca274;
}
.ob_cnt ul li{
  padding-right: 30px;
}
.ob_cnt ul li img{
  margin-bottom: 15px;
}
.ob_cnt ul li h3{
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.ob_cnt ul li p{
  font-size: 14px;
}
.testmonials_Wrapper{
  padding: 50px 0 100px 0;
  padding-top: 0 !important;
}
.testmonials_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial_image {
  max-width: 45%;
  height: 400px;
  background: #ccc;
  overflow: hidden;
  border-radius: 10px;
}
.testmonials_slider {
  width: 100%;
}
.testimonial_image img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.testmonials_item p{
  font-size: 18px;
  line-height: 26px;
}
.testimonial__name{
  font-size: 18px;
  font-weight: 600;
}
.testimonial__title{
  font-weight: 500;
}
.testmonials_slider .slick-dots{
  display: block;
  text-align: left;
  bottom: -50px;
}
.testmonials_slider .slick-dots li{
  margin: 0 5px;
  padding: 0;
}
.testmonials_in .ha_cnt ul li:before{
    left: 0;
    content: '';
    width: 15px;
    height: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: auto;
    right: 0;
    background: #000;
}
.testmonials_in .ha_cnt ul li.slick-active:before{
  background: #a13c10;
}
.wtk {
  margin-top: 100px;
  background: #f4f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wtk_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #a13c10;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wtk_icon img {
  width: 200px;
}
.wtk_cnt {
  padding: 20px 50px;
}
.wtk_cnt h2{
  margin-bottom: 15px;
}
.wtk_cnt p{
  margin-bottom: 20px;
}
.sm ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sm li{
  margin: 0 10px 0 0;
}
.sm a{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border:2px solid #fff;
  border-radius: 50%;
}
.sm a svg{
  width: 20px;
  height: 20px;
  fill: #fff;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.sm a:hover{
  background: #a13c10;
  border-color: #a13c10;
}
.sm a:hover svg{
  fill: #fff;
}
.copyright p {
  font-size: 14px;
  margin: 0 0 10px;
}
.copyright p b{
  font-weight: 600;
}
footer{
  background: #000;
  color: #fff;
  padding: 50px 0;
}
footer a{
  color: #fff;
}
.footer_logo {
  margin-bottom: 20px;
  display: inline-block;
}
.footer_logo img {
    -webkit-filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(0%) hue-rotate(191deg) brightness(103%) contrast(102%);
            filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(0%) hue-rotate(191deg) brightness(103%) contrast(102%);
}
.footer_logo strong{
  color: #fff !important;
}
.footer_rht {
  padding: 0 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
}
.footer_top{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom:  50px;
}
.footer_lft {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
.quick_lnks {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
.footer_rht h5{
  font-size: 20px;
  margin-bottom:  15px;
  font-weight: 600;
}
.quick_lnks a{
  text-transform: capitalize;
}
.quick_lnks li{
  margin-bottom:  15px;
}
footer a:hover{
  color: #a13c10;
}
b,strong{
  font-weight: 600;
}
address p{
  margin-bottom:  30px;
}
.footer_btm{
  padding-top:  30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/*menu toggle*/
.menu_toggle {
  position: relative;
  display:  inline-block;
  width: 30px;
  height: 30px;
  margin: 0 0 0 30px;
  display: none;
}
.menu_toggle span {
  margin: 0 auto;
  position: relative;
  top: 15px;
}
.menu_toggle span:before, .menu_toggle span:after {
  position: absolute;
  content: '';
}
.menu_toggle span, .menu_toggle span:before, .menu_toggle span:after {
  width: 100%;
  height: 2px;
  background-color: #000;
  display: block;
}
.menu_toggle span:before {
  margin-top: 10px;
}
.menu_toggle span:after {
  margin-top: -10px;
}
/* --- btn --- */
.menu_toggle span {
  -webkit-transition-duration: 0s; -o-transition-duration: 0s; transition-duration: 0s;
  -webkit-transition-delay: 0.2s; -o-transition-delay: 0.2s; transition-delay: 0.2s;
}
.menu_toggle.active span {
  background-color: rgba(0,0,0,0.0);
  -webkit-transition-delay: 0.2s; -o-transition-delay: 0.2s; transition-delay: 0.2s;
}


.menu_toggle span:before {
  -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; -o-transition-property: margin, transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s; -o-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active span:before {
  margin-top: 0;
  -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s; -o-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}
.menu_toggle span:after {
  -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; -o-transition-property: margin, transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s; -o-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active span:after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s; -o-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}
.header_rht {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


.our_stats{
  background: url(../images/img_4.jpg) no-repeat center / cover;
  color: #fff;
  position: relative;
}
.our_stats:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #15174a;
  opacity: 0.6;
}

.our_stats ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.count{
  font-family: "Poppins", sans-serif;
  font-size: 160px;
  line-height: 1;
  opacity: 0.3;
}
.our_stats ul li{
  width: 100%;
  min-height: 327px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.our_stats ul li p {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  line-height: 1;
}
.about_blk {
  padding: 100px 0;
}
.ha_in.about_blk_in {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.title_heading{
  text-align: center;
  margin-bottom: 40px;
  color: #a13c10;
}
.about_blk_in {
  border: 1px solid #f4f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 80%;
  margin: auto;
}
.ovc{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3);
          flex: 0 0 calc(100% / 3);
  padding: 20px;
  border-right: 1px solid #f4f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.ovc:hover{
  background: #a13c10;
  color: #fff;
}
.ovc:last-child{
  border:none;
}
.ovc_icon{
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ovc h3{
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
  font-weight: 600;
}
.ovc_icon img{
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.ovc:hover .ovc_icon img{
  -webkit-filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(0%) hue-rotate(191deg) brightness(103%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(0%) hue-rotate(191deg) brightness(103%) contrast(102%);
}
.testmonials_Wrapper2{
  padding-top: 100px !important;
}
.text-uppercase{
text-transform: uppercase;
}
.innerpage_banner_cnt{
  min-height: 400px;
}
.op_slider2{
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.op_in{
}
.op_head{
  max-width: 80%;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}
.op_head h2{
  margin-bottom: 20px;
}
.op_slider2 .product_item{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 30px);
          flex: 0 0 calc(100% / 3 - 30px);
  margin: 0 15px 50px;
}
.gallery_row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.gallery_item{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 30px);
          flex: 0 0 calc(25% - 30px);
  width: calc(25% - 30px);
  height: 250px;
  margin: 15px;
  overflow: hidden;
  background: #ccc;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
.gallery_item img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery_Wrapper{
  padding: 100px 0 0;
  padding-bottom: 0 !important;
}
.gallery_nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  position: sticky;
  top: 82px;
  background: #fff;
  z-index: 9;
}
.gallery_nav ul li{
  margin: 15px;
}
.btn_blue.is-checked{
  background: #a13c10;
}
.contact_us_wrapper {
  padding: 100px 0;
}
.contact_form{
  text-align: center;
  margin: 0 0 70px 0;
}
.form_group {
  margin-bottom: 10px;
}
label{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: left;
  display: block;
}
.form_control {
  width: 100%;
  display: block;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  height: 60px;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 60px;
  font-weight: 400;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.form_control:focus{
  outline: none;
}
.form_control.btn{
  min-width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  max-width: 110px;
  border-radius: 0;
  background:#4c6fff;
}
.form_control.btn:hover{
  background:#0ca4e3;
}
.input_group .form_control:focus,
.form_control:focus{
  outline: none;
  border-color: #15174a; 
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #777;
}
::-moz-placeholder { /* Firefox 19+ */
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #777;
}
:-ms-input-placeholder { /* IE 10+ */
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #777;
}
:-moz-placeholder { /* Firefox 18- */
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #777;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type=number]{
    -moz-appearance: textfield;
}
label.error {
    display: none !important;
}
.form_control.error{
  border-color: red !important;
  color: red;
}
label.error{
  display: none !important;
}
.form_control.error::-webkit-input-placeholder{
  color: red;
}
.form_control.error::-moz-placeholder{
  color: red;
}
.form_control.error:-ms-input-placeholder{
  color: red;
}
.form_control.error::-ms-input-placeholder{
  color: red;
}
.form_control.error::placeholder{
  color: red;
}
textarea.form_control{
  height: 162px;
  resize: none;
}
button:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}
#enquiry_form{
  margin-top: 30px;
}
.form_row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.w_50{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%
}
.w_100{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%
}
.form_btn{
  width: 250px;
  margin: 30px auto;
}
.form_btn button{
  width: 100%;
  font-size: 18px;
}
.contact_details{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.map{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  background: #f4f5f5;
}
.add_blk{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  color: #fff;
  background: #15174a;
}
.contact_details h3{
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
  padding: 20px;
  color: #fff;
  font-weight: bold;
}
.map h3{
  color: #000;
  margin-bottom: 0;
}
.map iframe{
  width: 100%;
  display: block;
}
.add_blk{
  padding: 20px;
}
.add_blk a{
  color: #fff;
}
.add_blk p{
  line-height: 1.5;
}
.add_blk ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.ct_icon{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  max-width: 30px;
  margin-right: 20px;
}
.ct_icon img{
  width: 30px;
}
.product_view{
  padding: 100px 0;
}

.faqs_blk {
  background: #f4f5f5;
  padding: 80px 0;
}
.faqs h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 15px;
}
.faqs ul li {
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  margin-bottom: 15px;
}
.faqs ul li h6 {
  font-weight: 600;
  position: relative;
  cursor: pointer;
  padding: 15px 25px;
}
.faqs ul li p {
  display: none;
  padding: 0 25px 20px;
}
.faqs ul li h6::before {
  counter-increment: section;
  content: " " counter(section) ". ";
}
.faqs ul li h6:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 20px;
  font-weight: 600;
}
.faqs ul + p {
  color: #a13c10;
  margin-top: 20px;
}
.faqs ul li.open h6:after {
    content: '-';
}
.dropdown:hover .dropdown-nav {
   opacity: 1;
   visibility: visible;
}
 .dropdown-nav {
  opacity: 0;
  visibility: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;
  background: #fff;
  display: block;
  width: 250px;
  top: calc(100% + 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
  border:1px solid #e1e1e1;
   -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
           box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.dropdown-nav::before{
  content: '';
  position: absolute;
  left: 0;
  top: -30px;
  right: 0;
  width: 0;
  height: 0;
  border:15px solid transparent;
  border-bottom-color: #a4a7a7;
  margin: auto;
}
.dropdown-nav a {
    display: block;
   font-weight: 300;
   font-size: 15px;
   color: #000;
   font-weight: 500;
   padding: 10px 20px;
}
.dropdown-nav li{
  margin: 0 !important;
}
.dropdown-nav li a:after{
  bottom: 0;
  margin:0;
}
.dropdown-nav li + li{
  border-top: 1px solid #e1e1e1;
}
.dropdown{
  position: relative;
}
.dropdown > a{
  min-height: 80px;
}
.dropdown:hover > a svg{
  fill: #a13c10;
}
.sticky .dropdown-nav li{
  border-top: 1px solid #e1e1e1;
}


.Products_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border:1px solid #f4f5f5;
  margin-bottom: 30px;
}
.pd_image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 450px;
          flex: 0 0 450px;
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pd_cnt {
  width: 100%;
  padding: 30px;
  border-left: 1px solid #f4f5f5;
}
table,tr,th,td{
  border:1px solid #f4f5f5;
}
table{
  width: 100%;
}
table td{
  width: 50%;
  padding: 5px 10px;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
}
.pv_cnt h3{
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}
.pd_cnt h3{
  color: #15174a;
  margin-bottom: 10px;
}

.pd_cnt h4{
  font-size: 20px;
  font-weight: 600;
  color: #a13c10;
  margin-bottom: 20px;
}
.pd_cnt h4 span{
  font-family: 'Arial';
}
.pd_cnt h4 small{
  color: #777;
  font-size: 80%;
}
.Products_grid .slick-arrow{
  top: 50% !important;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.Products_grid .slick-prev{
  left: 0 !important;
  right: auto !important;
  z-index: 99;
}
.slick-list{
  height: 100%;
}
.slick-track{
  height: 100%;
}
.pdimg_placeholder {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px;
}
.pdimg_placeholder img{
  width: 100%;
}
.slick-dots{
  bottom: -10px;
}
.slick-dots li button:before{
  font-size: 70px;
  opacity: 1;
  color: #15174a;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #a13c10;
}
.btn_block{
  text-align: center;
  margin-bottom: 30px;
}
table td:nth-child(2){
  font-weight: 600;
}
.pd_image_single .slick-dots{
  display: none;
}
.no_img .slick-dots{
  display: none;
}
.no_img {
  opacity: 0.7;
}
.thankyou_block .innerpage_banner_cnt{
  min-height: auto;
  height: 100vh;
}
.thankyou_block{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -9999;
}
.page_thankyou .logo{
  margin: 0;
}


.table {
  width: 100%;
  border-collapse: collapse;
}

.table td,
.table th {
  padding: 10px 15px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 15px;
  width: calc(100% / 9);
}

.table th {
  background-color: #a13c10;
  color: #ffffff;
  border-color: #fff;
}
th{
  font-weight: bold;
}
.table_page h2{
  margin-bottom: 30px;
}
.table_responsive{
  max-width: 100%;
  overflow: auto;
}
.table_foot{
  background: #ccc;
  font-weight: 500;
  text-align: center;
  padding: 10px;
}
.table_head{
  background:#5d5e5e;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
  text-align: center;
}
.table_head h3{
  margin: 0;
}
/*responsive*/
/*
@media (max-width: 500px) {
  .table thead {
    display: none;
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }
  .table tr {
    margin-bottom: 15px;
  }
  .table td {
    padding-left: 50%;
    text-align: left;
    position: relative;
  }
  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }
}
*/
.floating_btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1daa61;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.floating_btn a{
  padding: 10px;
  display: block;
}
.extrusions_blk {
  padding: 30px 0;
}
.extrusions_blk h2{
  text-align: center;
  margin-bottom: 30px;
}
.extrusions_in{
  max-width: 1024px;
  margin: auto;
}
.extrusions_card{
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.extrusions_card{
}
.extrusions_img{
  flex: 0 0 250px;
  max-width: 250px;
  height: 180px;
  border:1px solid #a13c10;
  border-radius: 6px;
}
.extrusions_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.extrusions_cnt {
  padding: 10px 20px;
}
.extrusions_cnt h3{
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
.table_page2{
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
  padding-bottom: 50px !important;
}
.table_page2 h2{
  text-align: left;
  margin-bottom: 10px;
}
.table_page2 h2 + p{
  margin-bottom: 30px;
}
.table_page2 .table_wrapper{
  margin-bottom: 30px;
}
.table_page2 h4{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.table_page2 ul{
  list-style: disc;
  padding-left: 20px;
}
.table_page2 ul li{
  margin-bottom: 10px;
}