@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  outline: none;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
}
img {
  border: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
strong,
ul,
li,
span,
ol {
  margin: 0px;
  padding: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
body {
  font-size: 14px;
  color: #606060;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}
/************************/
html {
  scroll-behvior: smooth;
}
::-webkit-scrollbar {
  -webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
  width: 7px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: none;
  background-color: #606060;
}
::-webkit-scrollbar:horizontal {
  height: 7px;
}
::-webkit-scrollbar-track {
  background-color: rgba(239, 239, 239, 0.5);
}
.container {
  max-width: 1200px;
}
/************************/
.header {
  background: #f1f1f1;
  padding: 7px 0;
}
.header_tp_lft {
  float: right;
}
.header_tp_lft ul li {
  display: inline-block;
}
.header_tp_lft ul li:first-child {
  border-right: solid 1px #ddd;
  padding: 0 10px;
}
.header_tp_lft ul li:last-child {
  padding: 0 10px 0 10px;
}
.header_tp_lft ul li:nth-child(2) {
  padding: 0 10px;
  border-right: solid 1px #ddd;
}
.header_tp_lft ul li a {
  color: #606060;
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.header_tp_lft ul li a:hover {
  color: #ad6e69;
}
/************************/
.fixed-top {
  position: relative;
  display: block;
  background: #fff;
  top: 0px;
  padding: 5px 0;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.13);
}
.header-scrolled {
  position: fixed;
}
.header-scrolled .logo {
  margin-top: 0px;
  transition: all.5s ease;
}
.header-scrolled .scrollto img {
  width: 100%;
  height: auto;
  transition: all.5s ease;
}
.logo {
  background: #fff;
  padding: 5px 0;
  width: 24%;
  transition: all.5s ease;
}
.scrollto img {
  width: auto;
  height: auto;
  transition: all.5s ease;
}
.main-nav {
  float: right;
  transition: all.3s ease-in-out;
}
.main-nav > ul {
  margin: 2.5% 0;
  display: flex;
  transition: all.3s ease-in-out;
}
.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}
.main-nav a {
  color: #606060;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  font-size: 13px;
  padding: 5px 8px;
}
.main-nav ul li:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  height: 2px;
  content: "";
  background-color: #ad6e69;
  opacity: 0;
  transition: all 200ms linear;
}
.main-nav ul li:hover:after {
  bottom: 0px;
  opacity: 1;
}
.main-nav .drop-down ul li:after {
  display: none;
}
.main-nav li:last-child {
  border-right: 0px;
}
.main-nav .active > a {
  font-weight: 600;
}
.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #ad6e69;
  text-decoration: none;
}
.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: ease all 0.3s;
  padding: 10px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);
  border: none;
}
.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}
.main-nav .drop-down ul li {
  border-bottom: 1px solid #ddd;
  margin-top: 0px;
}
.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}
.main-nav .drop-down ul li a {
  padding: 7px 10px;
  color: #606060;
  border-radius: 2px;
  font-weight: 500;
  transition: all 200ms linear;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 100%;
}
.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #fff;
  background-color: #ad6e69;
}
.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 5px;
  font-size: 10px;
}
.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 10px);
}
.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}
/************************/
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #2e2d2d;
  transition: 0.4s;
}
.mobile-nav a {
  display: block;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  font-family: Montserrat;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #ee2324;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-toggle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #b91818;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/************************/
.carousel-inner {
  position: relative;
}
#carousel .carousel-control {
  background: none;
  bottom: 0;
  font-size: 20px;
  text-align: center;
  width: 40px;
  height: 40px;
  opacity: 1;
  position: absolute;
}
#carousel .carousel-control-right {
  right: 5%;
}
#carousel .carousel-control-left {
  left: 2%;
}
#carousel .carousel-control-right span {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  transition: transform 0.5s ease;
  opacity: 0;
}
#carousel .carousel-control-left span {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition: transform 0.5s ease;
  opacity: 0;
}
#carousel:hover .carousel-control-right span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}
#carousel:hover .carousel-control-left span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}
#carousel .carousel-control span {
  color: #2d4690;
  background: #ffffff;
  height: 55px;
  width: 40px;
  font-weight: bold;
  z-index: 121;
  line-height: 52px;
  border: 2px solid #e0e0e0;
  text-align: center;
  position: absolute;
  border-radius: 50%;
}
.carousel-indicators {
  left: 0;
  right: 0;
  bottom: 50px;
  text-align: center;
  display: block;
}
.carousel-indicators li {
  border: 2px solid #fff;
  display: inline-block;
  height: 18px;
  margin-bottom: 4px;
  width: 18px;
  background: #4a4a4a;
  border-radius: 50%;
}
.carousel-indicators .active {
  background: #ed1c24;
}
/************************/
#banner_tag {
  margin-top: -45px;
  /* background:#fcfcfc; */
}
.tag_line {
  background: #b91818;
  padding: 30px 0;
  text-align: center;
}
.tag_line span {
  font-size: 20px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
}
/************************/
#about_home {
  padding: 80px 0;
  /* background:#fcfcfc; */
}
.about_hd {
  margin-top: 20px;
}
.about_hd span {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 16px;
  color: #606060;
  display: block;
}
.about_hd h1 {
  font-size: 40px;
  color: #b91818;
  letter-spacing: 3px;
  padding-bottom: 20px;
  font-weight: bold;
}
.about_hd_dtl {
  padding: 10px 0 0 20px;
  border-left: 2px solid #b91818;
}
.about_hd_dtl p {
  color: #606060;
  letter-spacing: 0.25px;
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  padding-bottom: 15px;
}
.about_home_mg img {
  display: block;
  box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%);
  padding: 10px;
}
/************************/
#product_home {
  padding-bottom: 70px;
  padding-top: 70px;
  background: #fcfcfc;
}
.product_title {
  padding-bottom: 30px;
}
.product_title h3 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1px;
  padding-bottom: 10px;
  color: #b91818;
}
.product_title span {
  padding: 0 8%;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 15px;
  color: #606060;
  display: block;
}
.product_box {
  margin-bottom: 30px;
}
.product_dtl_bx img {
  overflow: hidden;
  transition: all 2s ease;
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  -ms-transition: all 2s ease;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%);
  border: 5px solid #fff;
}
.product_dtl_bx:hover img {
  transform: scale(1.04);
}
/************************/
#news_home {
  /* padding:70px 0; */
  background: url(../images/news-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
#news_home:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  opacity: 0.4;
}
.traning_dtl {
  padding: 60px 40px 60px 0;
  position: relative;
  z-index: 1;
}
.traning_dtl h2 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  padding-bottom: 20px;
  color: #b91818;
}
.traning_dtl p {
  color: #fff;
  letter-spacing: 0.25px;
  font-family: 14px;
  font-weight: 500;
  line-height: 24px;
  padding-bottom: 10px;
}
.news_section {
  background: linear-gradient(
    90deg,
    #fff 0,
    #fff 0,
    rgb(255 255 255 / 40%) 0,
    rgba(255, 255, 255, 0) 100%
  );
  padding: 60px 0 0 30px;
  position: relative;
  height: 100%;
  z-index: 1;
}
.new_dtl h4 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #b91818;
}
.event_list ul li {
  margin-top: 20px;
  display: flex;
  background: #fff;
}
.event_list ul li .events_date {
  padding: 10px;
  background: #b91818;
  display: block;
  text-align: center;
}
.event_list li:hover .events_date {
  background: #858688;
}
.event_list ul li .events_date span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 22px;
  display: block;
  color: #fff;
}
.event_list ul li .events_para {
  padding: 10px;
}
.event_list ul li .events_para a {
  font-size: 16px;
  color: #606060;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
}
.event_list li:hover .events_para a {
  color: #b91818;
}
.event_list ul li .events_para p {
  color: #606060;
  letter-spacing: 0.25px;
  font-size: 14px;
  font-weight: 500;
}
/************************/
#know_home {
  padding: 70px 0;
  background: #fcfcfc;
}
.know_title h4 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #b91818;
  text-align: center;
  padding-bottom: 20px;
}
.know_bx {
  padding: 15px;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 13%);
  background: #fff;
  border-radius: 10px;
}
.know_bx figure img {
  border-radius: 5px;
}
.know_dtl h5 {
  font-size: 19px;
  color: #606060;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
  padding: 10px 0;
  text-align: center;
}
.know_dtl p {
  color: #606060;
  letter-spacing: 0.25px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.know_btn {
  display: table;
  margin: 15px auto 10px;
  padding: 10px 30px;
  background-color: #b91818;
  box-shadow: 0px 4px 8px 0px rgb(0 0 0 / 13%);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.25px;
  /* border-radius:50px; */
}
.know_btn:hover {
  background: #606060;
  color: #fff;
}
/************************/
#footer_main {
  padding: 60px 0 40px 0;
  /* background:#323232; */
  background: url(../images/news-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
#footer_main:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #323232;
  opacity: 0.8;
  z-index: -1;
}
.footer_heading ul li a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.25px;
}
.footer_heading ul li a:hover {
  color: #b5b5b5;
}
.foot_cont {
  padding-bottom: 10px;
  display: inline-block;
}
.foot_cont img {
  float: left;
  width: 37px;
  height: 37px;
  text-align: center;
  display: block;
  background: #b91818;
  padding: 6px;
}
.cont {
  padding-left: 55px;
}
.cont p {
  color: #fff;
  display: block;
  font-size: 14px;
  letter-spacing: 0.25px;
  line-height: 20px;
  font-weight: 500;
}
.cont span {
  line-height: 36px;
}
.cont span a {
  font-weight: 500;
  letter-spacing: 0.5px;
  display: inline-block;
  font-size: 14px;
  color: #fff;
}
.cont span a:hover {
  color: #b91818;
}
.hm_foot_hed {
  padding-bottom: 10px;
}
.hm_foot_hed h6,
.social_link h6 {
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
  position: relative;
}
.hm_foot_hed h6:before,
.social_link h6:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 20px;
  height: 4px;
  background: #b91818;
  display: block;
}
.hm_foot_hed h6:after,
.social_link h6:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 20px;
  width: 20px;
  height: 4px;
  background: #fff;
  display: block;
}
.foot_md_dtl p {
  font-size: 14px;
  color: #fff;
  display: block;
  line-height: 23px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
}
.hm_foot_hed ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.hm_foot_hed ul li {
  width: 49%;
  float: left;
}
.hm_foot_hed ul li a:hover {
  color: #b91818;
}
.social_link span {
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 16px;
  color: #fff;
  display: inline-block;
  padding: 25px 0;
}
.social_link ul li {
  float: left;
  padding-right: 10px;
}
.social_link ul li a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  display: block;
  color: #fff;
}
.social_link ul li a i:hover {
  background: #323232;
  border: 2px solid #fff;
}
.social_link ul li a .fa-facebook-f {
  background: #3b5998;
  color: #fff;
}
.social_link ul li a .fa-instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #fff;
}
.social_link ul li a .fa-youtube {
  background: #d42428;
  color: #fff;
}
.social_link ul li a .fa-linkedin {
  background: #007ab9;
  color: #fff;
}
.social_link ul li a .fa-x-twitter {
  background: #000;
  color: #fff;
}
.ft_btm_dtl {
  padding: 15px 0;
  margin-top: 15px;
  background: #2e2d2d;
}
.ft_btm_dtl p {
  color: #fff;
  display: block;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-align: center;
}
.ft_btm_dtl p a {
  color: #b91818;
  display: inline-block;
}
/************************/
#banner_inner_main {
  position: relative;
  min-height: 270px;
  padding: 100px 0 0 0;
  background-repeat: no-repeat;
  background-image: url(../images/news-bg.jpg);
}
#banner_inner_main:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  display: block;
  z-index: 1;
}
.banner_detail {
  position: relative;
  content: "";
  opacity: 1;
  float: left;
  width: 50%;
  z-index: 2;
}
.banner_detail h1 {
  font-size: 25px;
  color: #fff;
  letter-spacing: 1px;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
.banner_link {
  position: relative;
  content: "";
  opacity: 1;
  width: 40%;
  right: 0;
  float: inline-end;
  z-index: 2;
}
.banner_link ul {
  display: inline-block;
  padding: 0 5px;
  float: right;
}
.banner_link ul li {
  display: inline-block;
}
.banner_link ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.banner_link ul li a:hover {
  color: #b91818;
}
.banner_link ul li span {
  color: #b91818;
  font-weight: 600;
  font-size: 16px;
}
.banner_link ul li a i {
  margin-left: 5px;
  margin-right: 5px;
  color: #b91818;
}
/************************/
#product_detail {
  padding: 70px 0;
}
.product_feature {
  box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%);
  border: 5px solid #fff;
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  height: 570px;
}
.product_feature:hover {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -o-transform: translateY(8px);
  transform: translateY(8px);
}
.product_desp {
  /*padding: 30px 0px 15px; */
  text-align: center;
  padding-top: 30px;
  display: block;
  /* background: #fff; */
  /* -webkit-box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%); 
    -moz-box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%);
    -ms-box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%);
    -o-box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%);
    box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%);*/
}
.product_desp h5,
.product_desp span {
  font-size: 18px;
  color: #b91818;
  display: block;
  font-weight: 500;
  letter-spacing: 0.25px;
  padding-bottom: 5px;
}
.product_desp p {
  font-weight: 500;
  font-size: 15px;
  color: #606060;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.product_desp a {
  display: table;
  margin: 10px auto 10px;
  padding: 10px 30px;
  background-color: #b91818;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.25px;
}
.product_feature:hover .product_desp a {
  background: #5b5b5b;
}
.product_zoom_feature {
  position: relative;
  box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%);
  border: 5px solid rgb(234 234 234 / 40%);
  padding: 10px;
}
.product_zoom_feature a span {
  position: absolute;
  content: "";
  right: 5px;
  top: 5px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 4%);
  text-align: center;
  border-radius: 50px;
  z-index: 9;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  background: #dddddd;
  color: #b91818;
  font-size: 20px;
}
.product_description {
  padding-right: 30px;
}
.product_data_hed h4,
.product_data_hed h2,
.product_data_hed h3 {
  padding: 7px 15px;
  background: #b91818;
  letter-spacing: 0.5px;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  margin-bottom: 15px;
}
.product_data_hed p {
  color: #606060;
  letter-spacing: 0.35px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  padding-bottom: 10px;
}
.background-bg-none h4 {
  padding: 6px 0px;
  background: none;
  letter-spacing: 0.5px;
  font-size: 17px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 7px !important;
}
.background-bg-ul-li ul li span {
  padding-left: 0px !important;
}
.product_bullet ul li i {
  left: 10px;
  line-height: 22px;
  color: #b91818;
  position: absolute;
  font-size: 10px;
}
.product_bullet ul li span {
  display: inline-block;
  padding-left: 15px;
  position: relative;
  color: #606060;
  letter-spacing: 0.25px;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 12px;
}
.enquire_block ul span {
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #5b5b5b;
}
.enquire_block ul {
  margin: 35px auto 0;
  display: table;
}
.enquire_block ul li {
  display: inline-block;
}
.enquire_block ul li a {
  display: table;
  margin: 10px auto 0;
  padding: 10px 30px;
  background-color: #b91818;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.25px;
  margin-right: 10px;
}
.enquire_block ul li a:hover {
  background-color: #606060;
  color: #fff;
}
.product-slider .owl-nav button.owl-next,
.product-slider .owl-nav button.owl-prev,
.product-slider button.owl-dot {
  display: none;
}
.prd_range_hed {
  padding-top: 40px;
}
.prd_range_hed h4 {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 600;
  color: #b91818;
  padding-left: 10px;
  border-left: 3px dotted #b91818;
  display: block;
  margin-bottom: 15px;
}
.prd_range_hed span {
  color: #606060;
  letter-spacing: 0.25px;
  font-size: 16px;
  font-weight: 600;
  display: block;
  line-height: 24px;
  padding-bottom: 15px;
}
.product_data_hed h5 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #606060;
  display: block;
  padding-bottom: 10px;
}

.product-table {
  /* margin-top:25px; */
}
.product-table table th {
  width: 25%;
}
.table-bordered {
  border: 2px solid #f1f1f1 !important;
  margin-top: 15px;
}
.product-table th {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px;
  letter-spacing: 0.25px;
  border: 2px solid rgb(46 45 45 / 30%);
  color: #606060;
}
.product-table td {
  border: 2px solid rgb(46 45 45 / 30%);
  color: #606060;
  letter-spacing: 0.25px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  padding: 10px 12px;
}
.product-table tr:nth-child(odd) {
  background: #f4f4f4;
}
.product-table tr:nth-child(even) {
  background: #fff;
}
/************************/
.download_image_feature {
  margin-bottom: 20px;
  box-shadow: 0px 10px 60px 0px rgb(39 39 52 / 6%);
  border-radius: 8px;
  text-align: center;
  background: #fff;
}
.catalogue_dtl span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 15px 10px;
  display: block;
  color: #fff;
  background: #b91818;
}
.download_image_feature img {
  padding: 15px;
}
/************************/
#contact_inner_banner {
  background: #f1f1f1;
  padding: 80px 0 70px 0;
  display: block;
  position: relative;
}
.contact_bdetail h1 {
  font-size: 26px;
  color: #5b5b5b;
  letter-spacing: 2px;
  padding-bottom: 5px;
  padding-top: 30px;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
.contact_bdetail {
  padding-bottom: 20px;
}
.contact_bdetail span {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #b91818;
}
#contact_form_section {
  padding-bottom: 80px;
  padding-top: 80px;
}
.contact_email ul li {
  padding-bottom: 10px;
}
.contact_email ul li h6 {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #b91818;
}
.contact_email ul li span {
  font-weight: 500;
  letter-spacing: 0.25px;
  font-size: 14px;
  color: #000;
  display: block;
}
.contact_email ul li span a {
  letter-spacing: 0.5px;
  display: inline-block;
  font-weight: 600;
  color: #ad6e69;
  font-size: 13px;
}
.contact_email ul li span a:hover {
  color: #b91818;
}
.contact_form_bx {
  background: #fff;
  padding: 40px 15px 40px 32px;
  margin-top: -130px;
  box-shadow: 0px 4px 10px 0 rgb(0 0 0 / 14%);
}
.contact_form h5 {
  font-weight: 600;
  padding-bottom: 25px;
  color: #5b5b5b;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}
.conatct_bx_dtl p {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  display: block;
  text-transform: capitalize;
  letter-spacing: 0.25px;
  padding-bottom: 10px;
}
.conatct_bx_dtl span a {
  color: #000;
  font-weight: 500;
  padding-bottom: 0px;
  letter-spacing: 0.25px;
  display: block;
  line-height: 26px;
}
.contact_form .form-group input[type="text"],
.contact_form .form-group input[type="tel"],
.contact_form .form-group input[type="email"],
.contact_form select {
  display: block;
  width: 100%;
  color: #565b7a;
  line-height: 26px;
  padding: 10px 28px;
  height: 50px;
  font-size: 14px;
  letter-spacing: 0.25px;
  border-radius: 2px;
  background: #f1f1f1;
  border: 1px solid transparent;
}
.contact_form .form-group textarea {
  display: block;
  width: 100%;
  line-height: 26px;
  padding: 10px 28px;
  color: #565b7a;
  height: 120px;
  font-weight: 500;
  font-size: 14px;
  resize: none;
  border-radius: 2px;
  border: 0px;
  background: #f1f1f1;
}
.contact_form .form-group input {
  display: block;
  width: 100%;
  padding: 12px 25px;
  border: 0px;
  font-size: 15px;
  font-weight: 500;
  color: #5b5b5b !important;
  background: #fbfbfb;
}
.butn-bg {
  font-size: 14px;
  padding: 10px 30px;
  background: #b91818;
  color: #fff;
  cursor: pointer;
  margin-top: 15px;
  font-weight: 600;
  display: block;
  border: 0px;
}
.butn-bg:hover {
  color: #fff;
  background: #606060;
}
#location iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: 0px;
  padding-bottom: 15px;
}
/************************/
.line {
  border: 1px solid #e1e1e1;
  margin: 20px 0;
}

.spec_hed h3 {
  font-size: 23px;
  color: #2d2d2d;
  text-transform: capitalize;
  margin-bottom: 30px;
  display: block;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}
.spec_hed h3:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 30px;
  right: 0;
  margin: 0 auto;
  width: 30px;
  height: 4px;
  background: #fc0606;
  display: table;
}
.spec_hed h3:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 30px;
  margin: 0 auto;
  left: 0;
  right: 30px;
  width: 30px;
  height: 4px;
  background: #195b8d;
  display: table;
}
.inn_prod_table {
  background: #fff;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  padding: 10px;
  margin-bottom: 20px;
}
.table-bordered {
  border: 0px;
}
.inn_prod_table th {
  border: 0px;
  font-size: 17px;
  color: #2d2d2d;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e1e1e1;
  color: #fc0606;
  font-family: "Montserrat", sans-serif;
}
.inn_prod_table td {
  padding: 10px;
  border: 0px;
  border-right: 2px solid #e1e1e1;
  color: #606060;
  letter-spacing: 0.25px;
  font-weight: 500;
  font-size: 14px;
  border-top: none !important;
}
.inn_prod_table td:last-child {
  border-right: 0px;
}
.inn_prod_table tr:nth-child(even) {
  background: #eaeaea;
}
.inn_prod_table tr:nth-child(odd) {
  background: #fff;
}
.inn_prod_table table {
  margin: 0px;
}
/*------------------------*/
.contact_form_sales {
  margin-top: 0px;
}
.contact_form_sales form .form-group textarea {
  margin-top: 30px;
}
.contact_form_sales form select {
  font-weight: 500;
}
.contact_form_sales h5 {
  text-align: center;
  color: #cc0000;
}
.butn-submit button {
  display: inline-block;
}
.butn-submit span {
  color: #b91818;
  letter-spacing: 0.25px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding-left: 15px;
}
/*------------------------*/
#faqs {
  padding: 70px 0 40px 0;
}
.faqs-section-dtl {
  box-shadow: 0px 4px 10px 0 rgb(0 0 0 / 14%);
  padding: 30px 30px 30px 70px;
  margin: 0 0 30px 0;
  position: relative;
}
.faqs-section-dtl img {
  position: absolute;
  content: "";
  left: 15px;
  top: 25px;
  width: 45px;
}
.faqs-section-dtl h4 {
  font-size: 19px;
  padding-bottom: 10px;
  font-weight: 600;
  color: #b91818;
  letter-spacing: 0.5px;
}
.faqs-section-dtl p {
  text-align: justify;
  color: #606060;
  letter-spacing: 0.25px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  padding-bottom: 10px;
}
/*********************/
.client_bx {
  padding: 10px;
  background: #fff;
  border: 2px dotted #e1e1e1;
  margin-bottom: 15px;
}
.client_bx img {
  margin: 0 auto 15px;
  display: table;
}
.client_bx span {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #5b5b5b;
  white-space: nowrap;
  overflow: hidden;
}
/************************/
#other_section {
  padding: 70px 0;
}
#who_are_banner {
  position: relative;
  min-height: 270px;
  padding: 100px 0 0 0;
  background-repeat: no-repeat;
  background-image: url(../images/whoweare-banner.jpg);
  background-position: top;
}
#who_are_banner:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  display: block;
  z-index: 1;
}
.other_data p {
  color: #606060;
  letter-spacing: 0.25px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  padding-bottom: 10px;
}
.other_data ul li {
  border-left: 3px dotted #e1e1e1;
  position: relative;
  padding-left: 15px;
}
.other_data ul li span {
  color: #606060;
  padding: 8px 0px;
  display: block;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.25px;
  font-size: 16px;
}
.other_data ul li span:hover {
  color: #ad6e69;
}
.other_data ul li span i {
  left: -26px;
  line-height: 24px;
  font-size: 18px;
  color: #ad6e69;
  border-radius: 50px;
  position: absolute;
}
.other_mg {
  padding: 15px;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 13%);
  background: #fff;
  /* border-radius: 10px; */
}
/**************************/
#other_section {
  padding: 70px 0;
}
#careeer_banner {
  position: relative;
  min-height: 270px;
  padding: 100px 0 0 0;
  background-repeat: no-repeat;
  background-image: url(../images/career-banner.jpg);
  background-position: center;
}
#careeer_banner:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  display: block;
  z-index: 1;
}
.sales_hed span {
  letter-spacing: 0.5px;
  font-weight: bold;
  color: #555;
  font-size: 16px;
  text-align: center;
  display: block;
  padding-bottom: 25px;
}
.career_bx {
  box-shadow: 0px 0px 10px 0px rgb(1 1 1 / 5%);
  border: 5px solid #fff;
  background: #fcfcfc;
  border-radius: 10px;
  padding: 20px 15px;
  margin-bottom: 20px;
}
.career_dtl h4 {
  padding: 5px 0 5px 10px;
  color: #b91818;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  border-left: 3px solid #b91818;
  margin-bottom: 15px;
}
.career_dtl span {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #606060;
  display: block;
}
.career_dtl a {
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  padding: 10px 15px;
  background: #b91818;
  margin-top: 15px;
  text-align: center;
}
.career_dtl a:hover {
  color: #fff;
  background: #2e2d2d;
}
.career_dtl p {
  color: #606060;
  letter-spacing: 0.25px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  padding-bottom: 10px;
}
/************************/
#about_banner {
  position: relative;
  min-height: 270px;
  padding: 100px 0 0 0;
  background-repeat: no-repeat;
  background-image: url(../images/about-us-banner.jpg);
  background-position: center;
}
#about_banner:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  display: block;
  z-index: 1;
}
.md_mg {
  position: relative;
  padding: 5px;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 13%);
  background: #fff;
}
.tag {
  position: absolute;
  bottom: 5px;
  left: 27px;
  padding: 8px 6px;
  font-size: 16px;
  color: #fff;
  background: #b91818;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.25px;
}
.about_inn_detail h2 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  color: #b91818;
  letter-spacing: 1px;
  padding-left: 10px;
  border-left: 3px dotted #b91818;
  display: block;
  margin-bottom: 15px;
}
.about_inn_detail h3 {
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 600;
  color: #b91818;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}
.about_inn_detail h5 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #b91818;
  letter-spacing: 1px;
  display: block;
  padding: 10px 0;
}
.about_inn_detail span {
  color: #606060;
  letter-spacing: 0.25px;
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  padding-bottom: 15px;
}
.time_line {
  position: relative;
}
.about_us_data {
  position: relative;
  padding-top: 20px;
}
.time_line p {
  position: relative;
  padding-left: 25px;
  color: #606060;
  letter-spacing: 0.25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  padding-bottom: 10px;
}
.about_us_data p {
  position: relative;
  padding: 7px 0 7px 35px;
  color: #606060;
  letter-spacing: 0.25px;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 500;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 13%);
  background: #fff;
}
.about_us_data p i {
  position: absolute;
  content: "";
  top: 10px;
  color: #b91818;
  left: 10px;
  display: block;
  margin-right: 20px;
}
.time_line p i {
  position: absolute;
  content: "";
  top: 3px;
  color: #b91818;
  left: 0;
  display: block;
  margin-right: 20px;
}
.about_us_data h4 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #b91818;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}
.break {
  padding-top: 30px;
}
/* ********Extra style*********** */
.about_home_mg {
  margin-top: 60px;
}
.new-sec {
  margin-bottom: 70px;
}

.pro-mr {
  margin-top: 20px;
}

.inn_prod_table span {
  color: #b91818;
}
/* ********Extra style*********** */

/* video strats */

.video-section {
  padding: 50px 0 20px 0 !important;
}

.airopower-video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid #6f6f6f33;
  transition: 0.3s ease-in-out;
}

.airopower-video:hover{
	box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 13%);
}

.airopower-video-title {
  position: absolute;
  top: -40px;
}

.airopower-video-title p {
  background-color: #b91818;
  padding: 10px 30px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 15px 15px 0 0;
  /* width: 500px; */
  /* min-width: 100%; */
  word-break: break-all;
}

.job-modal-custom .modal-dialog {
  max-width: 900px;
  width: 90%;
}
/* Parent Wrapper */
.job-modal-custom .modal-content {
  border: 2px solid #5f5f5f;
  border-radius: 0;
}

/* Header Section */
.job-modal-custom .modal-header {
  background-color: #cc0000;
  color: #ffffff;
  border-bottom: 3px solid #5b5b5b;
  border-radius: 0;
}

.job-modal-custom .modal-header .close {
  color: #fff;
  opacity: 1;
}

/* Body Section */
.job-modal-custom .modal-body {
  background-color: #ffffff;
  color: #626264;
  padding: 5px;
}

.job-modal-custom .job-requirements li {
  margin-bottom: 8px;
  list-style-type: none;
}

.job-modal-custom .job-requirements li::before {
  content: "•";
  color: #ffd900;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Footer & Buttons */
.job-modal-custom .modal-footer {
  border-top: 1px solid #eeeeee;
  padding: 0;
}

.job-modal-custom .btn-close-modal {
  background-color: #626264;
  color: white;
  border-radius: 0;
  transition: 0.3s;
}

.job-modal-custom .btn-apply-modal {
  background-color: #ffd900;
  color: #626264;
  font-weight: bold;
  border-radius: 0;
  transition: 0.3s;
}

.job-modal-custom .btn-apply-modal:hover {
  background-color: #626264;
  color: #ffd900;
}

.video-ply-btn{
	position: absolute;
	background-color: #ffffffc9;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	transition: 0.2s ease-in-out;
	
}

.video-ply-btn img{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%);
	cursor: pointer;
}

.airopower-video:hover .video-ply-btn{
		opacity: 1;
}
