 
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 25px;
  color: #2a2a2a;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #2a2a2a;
  color: #fff;
}

::-moz-selection {
  background: #2a2a2a;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-border-button a {
  font-size: 15px;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 25px;
  display: inline-block;
  font-weight: 400;
  transition: all .3s;
}

.main-border-button a:hover {
  background-color: #fff;
  color: #2a2a2a;
}

.main-white-button a {
  font-size: 13px;
  color: #2a2a2a;
  background-color: #fff;
  padding: 12px 25px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 600;
  transition: all .3s;
}

.main-white-button a:hover {
  opacity: 0.9;
}

.main-text-button a {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  transition: all .3s;
}

.main-text-button a:hover {
  opacity: 0.9;
}

.section-heading h2 {
  font-size: 33px;
  font-weight: 600;
  color: #2a2a2a;
  text-transform: uppercase;
}
 



/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
  border-bottom: none !important;
  background-color: #fff;
  height: 80px!important;
  position: fixed!important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .main-nav .nav li:hover a {
  color: #2a2a2a!important;
}

.background-header .nav li a.active {
  color: #2a2a2a!important;
}

.header-area { 
  box-shadow: none;
  background-color: #fff;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 85px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 85px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 80px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo {
  line-height: 70px;
}
.header-area .main-nav .logo-img {
  height: 55px;
}
.background-header .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 23px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 15px;
  padding-right: 15px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #2a2a2a;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-area .main-nav .nav li a {
  color: #2a2a2a;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #0492d0 !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #0492d0 !important;
  opacity: 1;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #2a2a2a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
  color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 245px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background:#f7f7f7;
  color: #2a2a2a !important;
  padding-left: 15px;
  height: 50px;
  line-height: 19px;
  -webkit-transition:all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition:all 0.3s ease 0s;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  border-bottom:1px solid #eee;
  display: flex;
  align-items: center;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #0492d0 !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 20px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #aaa;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #aaa!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #ffffff;
    padding: 0px 10px;
    height: 70px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .main-nav {
    min-height: 70px; 
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky {
    min-height: 70px;
  }
  .header-area.header-sticky .nav {
    margin-top: 70px !important;
  }
  .header-area .main-nav .logo {
    line-height: 70px;
  }
  .header-area .main-nav .logo-img {
    height: 43px;
  }
  
  .breadcrumb { 
    width: 100%; 
    margin-top: 70px !important; 
    font-size: 13px;
    padding: 10px 15px;
    font-size: 12px;
  }
  .breadcrumb a { 
    font-size: 12px;
  }
  .background-header { 
    height: 70px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #aaa!important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 13px;
    font-weight: 400;   
    text-align: center;
    display: block;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}


/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.banner-section {
  padding-top: 84px;
  padding-bottom: 0px;
} 
.banner-section .banner-text {
  position: absolute;
  width: 100%;
  height: 670px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.banner-section .banner-text h1 {
  font-size: 55px;
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 4px #000000e1;  
  font-weight: 600;
}
.typing {   
  font-family: monospace;
  white-space:normal;
  overflow: hidden;
  border-right: 2px solid rgb(255, 255, 255);
  display: inline-block;
  font-size: 24px;
  animation: blink-caret 1s ease-in forwards;
}
@keyframes blink-caret {
  0%, 100% { border-color: transparent; }
  50% { border-color: rgb(255, 255, 255); }
}

/** For video height code start **/
.banner-section {
  width: 100%;
  overflow: hidden;
}
.video-banner {
  width: 100%;
  height: 670px; 
  object-fit: cover;
  pointer-events: none;  
} 
/** For video height code End **/

/*
---------------------------------------------
Men
---------------------------------------------
*/

.products-slider {
  padding-top: 35px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.products-slider .section-heading {
  margin-bottom: 25px;
  text-align: center;
}
.products-slider .owl-carousel .owl-stage-outer { 
  padding:20px 0px;
}
.products-slider .item {
  border: 1px solid #eee;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  transition: .5s;
}
.products-slider .item:hover {
  box-shadow: 0 10px 20px rgba(0, 94, 148, 0.3); 
  border: 1px solid rgba(0, 94, 148, 0.3);
  transform: scale(1.1)
}
.products-slider .item .down-content {
  padding: 15px 10px 10px 10px;
  position: relative;
  z-index: 3;
  background-color: #fff;
}   
.products-slider .item .down-content h4 {
  font-size: 15px;
  letter-spacing: 0.1px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products-slider .item .down-content .price-rs {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #0492d0;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  width: 100%;
}
.rs-icon {
  color: #494949;
  font-weight: 400;
}
.products-slider .item .down-content .view-more {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #ffffff;
  font-weight: 400;
  border: 1px solid #0492d0;
  background-color: #0492d0;
  text-align: center;
  display: block;
  width: 100%;
  cursor: pointer;
  line-height: 20px;
  padding: 7px 0px;
  margin-top: 10px;
  border-radius: 6px;
}
.products-slider .item .down-content .view-more:hover { 
  color: #fff; 
  border: 1px solid #027fb4; 
  background-color:#027fb4;
  font-weight: 400;
}
 

.products-slider .owl-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);    
  display: flex;
  align-items: center;
}

.products-slider .owl-dots {
  display: none;
}
    
.products-slider .owl-nav .owl-prev{
  position: absolute;
  left: -70px;
  outline: none;
}

.products-slider .owl-nav .owl-prev span,
.products-slider .owl-nav .owl-next span {
  opacity: 0;
}

.products-slider .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #2a2a2a;
  font-size: 25px;
  font-weight: 700;
  content: '\f104';
  width: 50px;
  height: 50px;
  background-color: transparent;
  line-height: 48px;
  border :1px solid #2a2a2a;
}

.products-slider .owl-nav .owl-prev {
  opacity: 0.75;
  transition: all .5s;
}

.products-slider .owl-nav .owl-prev:hover {
  opacity: 1;
}

.products-slider .owl-nav .owl-next {
  opacity: 0.75;
  transition: all .5s;
}

.products-slider .owl-nav .owl-next:hover {
  opacity: 1;
}

.products-slider .owl-nav .owl-next{
  outline: none;
  position: absolute;
  right: -75px;
}

.products-slider .owl-nav .owl-next:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #2a2a2a;
  font-size: 25px;
  font-weight: 700;
  content: '\f105';
  width: 50px;
  height: 50px;
  background-color: transparent;
  line-height: 48px;
  border :1px solid #2a2a2a;
}
.services-row { 
  width: 100%; 
}
/** owl slider product page start**/
.pr-dt-sl {
  margin: 0;
  padding: 0; 
  border-bottom:none;
}
.pr-dt-sl .owl-nav .owl-prev {
  left: 10px;
}
.pr-dt-sl .owl-nav .owl-next {
  right: 5px;
  border-radius: 10px 10px 0px 0px;
}
.pr-dt-sl .owl-nav .owl-prev::before,
.pr-dt-sl .owl-nav .owl-next::before { 
  font-size: 21px; 
  width: 37px;
  height: 37px;
  background-color: #dddddd;
  line-height: 33px;
  border: 1px solid #dddddd;
  color: #000000;
  border-radius: 50%;
}
.pr-dt-sl .item .thumb img {
  width: 100%;
  border: none;
}
.pr-dt-sl .item {
  border: 1px solid #eee;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
 /** owl slider product page end **/

/*
---------------------------------------------
about 
---------------------------------------------
*/

.about {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.about .left-content {
  margin-right: 0px;
}

.about .left-content h5 {
  font-size: 30px;
  font-weight: 600;
  color: #2a2a2a;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 10px;
}

.about .left-content p {
  font-size: 14px;
  color: #595959; 
  display: block;
  margin-bottom: 15px;
  text-align: justify;
}

.about .left-content .main-border-button a {
  color: #0492d0;
  border: 1px solid #0492d0;
  margin-top: 0px;
  border-radius: 6px;
}

.about .left-content .main-border-button a:hover {
  background-color: #0492d0;
  color: #fff;
}
.about .main-border-button {
  text-align: left;
}

.about-row .about-img {
  width: 100%;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: .5s;
  cursor: pointer;
  animation: bounce 1s infinite alternate;
  -webkit-animation: bounce 1s infinite alternate
}
@keyframes bounce {
  from {
      transform: translateY(0)
  }
  to {
      transform: translateY(-8px)
  }
}
@-webkit-keyframes bounce {
  from {
      transform: translateY(0)
  }
  to {
      transform: translateY(-8px)
  }
} 
.about-row .about-img:hover {
    transform: scale(1.1)
}
.about h1 {
  font-size: 30px;
  font-weight: 600;
  color: #2a2a2a;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 10px;
}
.about .sv-gl-h2 {
  font-size: 25px;
  font-weight: 600;
  color: #2a2a2a;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 17px;
}
.about .about-row .left-content p {
  font-size: 15px;
  color: #595959;
  display: block;
  margin-bottom: 10px;
  text-align: left;
  line-height: 27px;
}
.about .hl-text-colour {
  color: #077baf;
}
.about .photo-img {
  max-width: 230px;
  width: 100%;
  border: 1px solid #f3f3f3;
  border-radius: 15px;
}
.about .certificate-img {
  width: 28%;
  margin-right: 2%;
}
.about .about-row h6 {
  font-size: 17px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 10px;
  margin-top: 20px;
}

.about .about-row .about-ul {
  margin-left: 15px;
}
.about .about-row .about-ul li {
  list-style-type: disc;
  margin-bottom: 6px;
  font-size: 15px;
  color: #595959;
}
 
.about .about-row .left-content {
  margin: 0px;
}
.about.ab-section {
  padding-bottom: 30px;
}
.services-box {
  padding:35px 0px 35px 0px;
}
.services-box .sv-gl-h2 {
  margin-bottom: 10px;
}
.services-box .services-a {
  color: #0492d0;
  border:1px solid #0492d0;
  margin-top: 5px;
  border-radius:6px;
  font-size: 14px;
  padding:9px 15px;
  display: inline-block;
  font-weight: 400;
  transition:all .3s;
  letter-spacing: 0.3px;
}

.services-box .services-a a:hover {
  background-color: #0492d0;
  color: #fff;
}
.sr-box {
  width: 100%;
background-color: #ecf0f1;
}
.sr-colour {
background-color: #487eb0;
width: 100%;
}
.sr-colour .about-row .left-content .sv-gl-h2,
.sr-colour .about-row .left-content p { 
  color: #ffffff !important; 
}

.sr-colour .about-row .left-content .services-a {
  color: #ffffff !important;
  border:1px solid #ffffff !important; 
}

/*
---------------------------------------------
Clients 
---------------------------------------------
*/
.clients {
  padding-top: 35px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
} 
.clients .section-heading { 
  margin-bottom: 15px;
}
.clients .clients-desk {
  display: block;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
.clients .clients-mob {
  display: none;
  width: 100%;
  max-width: 506px;
  margin: 0 auto;
}

/* 
---------------------------------------------
footer
--------------------------------------------- 
*/

footer {
  margin-top: 0px;
  padding: 50px 0px 0px 0px;
  background-color: #2a2a2a;
}

footer .logo {
  margin-bottom: 15px;
}
footer .logo img  {
  height: 40px;  
  margin-top: -15px;
}

footer ul li {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.3px;
}
footer ul li .ad-b { 
  font-weight: 500;
  text-transform: uppercase;
  width: 100%;
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

footer ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  transition: all .3s;
}

footer ul li a:hover {
  color: #ed0a13;
}

footer h4 {
  letter-spacing: 0.5px;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 17px;
  text-transform: uppercase;
}

footer .follow-us {
  margin-top: 0;
  padding-top: 0;
  text-align: left;
}

footer .follow-us ul {
  margin-top: 20px;
}

footer .follow-us ul li {
  display: inline-block;
  margin: 0px 4px;
}

footer .follow-us ul li a {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

footer .follow-us p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

footer .follow-us a {
  color: #fff;
  background-color: #0391cf;
}

footer .follow-us a:hover { 
  background-color: #ed0a13;
  color: #fff;
}
footer .under-footer {
  text-align: center;
  color: #fff;  
  background: #1e1e1e;  
  margin-top: 20px;
}
footer .under-footer p {
  text-align: center;
  color: #fff;   
  padding: 20px 0px;
  font-size: 14px;
  margin: 0;
}
footer .address-footer li {
  margin-bottom: 10px;
  font-weight: 300;
}
/* 
---------------------------------------------
Products Page
--------------------------------------------- 
*/
.hd-inner-pages { 
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15) !important;
}
.products-box {
  margin: 35px 0px 40px 0px;
}
 
.section-heading {
  text-align: center;
  margin-bottom: 30px;
}
.products-box  .section-heading {
  text-align: center;
  margin-bottom: 20px;
}
 
.products-box  .section-heading .product-h1 {
  font-size: 33px;
  font-weight: 500;
  color: #2a2a2a;
  text-transform: uppercase;
} 
.products-box .item {
  border: 1px solid #eee;
  margin-bottom: 25px;
}
.products-box .item .down-content {
  padding: 15px 10px 13px 10px;
  position: relative;
  z-index: 3;
  background-color: #fff;
}
.products-box .item .thumb .product-img {
  width: 100%;
  display: block;
}
.products-box .item .down-content h4 {
  font-size: 16px;
  letter-spacing: 0.1px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products-box .item .down-content .price-rs {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #0492d0;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  width: 100%;
}
.rs-icon {
  color: #494949;
  font-weight: 400;
}
.products-box .item .down-content .view-more {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #ffffff;
  font-weight: 400;
  border: 1px solid #0492d0;
  background-color: #0492d0;
  text-align: center;
  display: block;
  width: 100%;
  cursor: pointer;
  line-height: 20px;
  padding: 7px 0px;
  margin-top: 13px;
  border-radius: 6px;
}
.products-box .item .down-content .view-more:hover { 
  color: #fff; 
  border: 1px solid #027fb4; 
  background-color: #027fb4;
  font-weight: 400;
}

 /* 
---------------------------------------------
breadcrumb Page
--------------------------------------------- 
*/

.breadcrumb { 
  background-color: #e9ecef; 
  width: 100%;
  margin-top: 85px;
  color: rgb(89, 89, 89);
  font-size: 13px;  
  border-radius: 0;
  margin-bottom: 0;
  padding: 10px 0px;
}
.breadcrumb a {
  text-decoration: none;
   color: rgb(89, 89, 89);
   font-size: 13px;  
   width: auto;
}

.banner-pd {
  width: 100%;
  position: relative;
}
.banner-pd .desktop-img {
  width: 100%;
  display: block;
}
.banner-pd .mobile-img {
  width: 100%;
  display: none;
}
.banner-pd .banner-h1 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff !important;
  font-size: 40px;
  font-weight: 500; 
  text-transform: uppercase;  
  text-shadow: 2px 2px 5px #000;
}
/* 
---------------------------------------------
Product Detail Page
--------------------------------------------- 
*/
 
.product-container {
  display: flex;  
  flex-wrap: wrap;
  width: 100%;
  margin: 50px 0px;
}

.product-container .image-container {
  width: 35%;
}
.product-container .product-details {
  width: 65%;  
  padding-left: 3%;
}

.product-container .image-container img {
  width: 100%;   
  border: 1px solid #eee;
  transition: .5s;
  cursor: pointer;
} 
.product-container .image-container img:hover {
    transform: scale(1.1)
}
 .product-details .heding-h1 {
  font-size: 30px;
  color: #2a2a2a;
  margin-bottom: 13px;
  font-weight: 600;
}
.product-details .price {
  font-size: 19px;
  font-weight: 600;
  color: #0492d0;
  margin-bottom: 12px;
}
.product-details .rs-icon {
  color: #494949;
  font-weight: 500;
}
.product-details .pro-detail {
  font-size: 20px;
  color: #494949;
  margin-bottom: 14px;
  font-weight: 500;
  margin-top: 25px;
  text-transform: uppercase;
}

.product-details table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;  
  margin-bottom: 30px;
  border: 1px solid #e7e7e7;
}

.product-details table td {
  padding: 10px 8px;
    font-size: 14px;
    color: #595959;
}

.product-details table tr:nth-child(even) {
  background: #f1f1f1;
}


.product-container .button-container {
  width:100%;
}
 
 
.product-container .button-container .inquiry-btn {
  width: 50%;
  max-width: 210px;
  padding: 11px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  background: #0492d0;
  color: white;
  text-align: center;
  display: block;
}
.product-container .button-container .inquiry-btn:hover {
  background: #017aad;
  color: white;
}

.product-specs-section {
  width: 100%;
  margin-bottom: 30px;
}
.product-specs-section h2 {
  font-size: 23px;
  color: #2a2a2a;
  margin-bottom: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.product-specs-section .specs-ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 0px;
  margin: 0;
}
.product-specs-section .specs-ul li { 
    width: 46%;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    padding: 10px 0 10px 0;
    margin: 0; 
    margin-right: 3%;
    margin-bottom: -1px;
}
  
.product-specs-section .specs-ul li label {
    display: inline-block;
    width: 47%;
    color: #2a2a2a;
    font-weight: 500;
    vertical-align: top;
    margin: 0;
}

.product-specs-section .specs-ul li span {
    display: inline-block;
    font-weight: 400;
    width: 50%;
    color: #595959;
    vertical-align: top;
}
.product-specs-section .product-discription {
  font-size: 14px;
  color: #595959;
  display: block;
  margin-bottom: 10px;
  text-align: left;
  line-height: 25px;
  margin-top: 8px;
}



/* 
---------------------------------------------
inquiry now page 
--------------------------------------------- 
*/
.inquiry-box {
  margin: 35px 0px 40px 0px;
}
.inquiry-box .section-heading {
  text-align: center;
  margin-bottom: 16px;
}
.inquiry-box .section-heading .product-h1 {
  font-size: 29px;
  font-weight: 500;
  color: #2a2a2a;
  text-transform: capitalize;
}

.inquiry-col {
  border: 9px solid #e9ecef;
  padding: 20px 25px;
  margin: 0 auto;
  border-radius: 10px;
  width: 100%;
  max-width: 530px;
}

.inquiry-col .form-group {
  display: flex;  
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.inquiry-col .form-group div {
  width: 48%;
  margin-bottom: 7px;
}
.inquiry-col label { 
  display: block;
  margin-bottom: 7px;
  color: #302f2f;  
  font-weight: 600;  
  font-size: 15px;
}
.inquiry-col input, 
.inquiry-col textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  font-size: 15px;
  background-color: #fff;
  transition: border-color 0.3s;
}
.inquiry-col input:focus, 
.inquiry-col textarea:focus {
  border-color: #414141;
  outline: none;
}
.inquiry-col button {
  width: 100%;
  background-color: #0492d0;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s;
  margin-top:25px;
}
.inquiry-col button:hover {
  background-color:#017aad;
  color: white;
}
 
/* 
---------------------------------------------
About Us Page
--------------------------------------------- 
*/

.about-page-heading {
  margin-top: 160px;
  margin-bottom: 30px;
  background-image: url(../images/about-us-page-heading.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-us {
  margin-top: 80px;
}

.about-us .left-image img {
  width: 100%;
  overflow: hidden;
}

.about-us .right-content {
  margin-left: 30px;
}

.about-us .right-content h4 {
  font-size: 34px;
  font-weight: 700;
  color: #2a2a2a;
}

.about-us .right-content span {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

.about-us .right-content .quote {
  margin-top: 25px;
}

.about-us .right-content .quote i {
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: 10px;
}

.about-us .right-content .quote p {
  font-style: italic;
  color: #2a2a2a;
  font-weight: 500;
}

.about-us .right-content p {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

.about-us .right-content ul {
  border-top: 3px dotted #eee;
  margin-top: 30px;
  padding-top: 30px;
}

.about-us .right-content ul li {
  display: inline-block;
  margin-right: 5px;
}

.about-us .right-content ul li a {
  width: 44px;
  height: 44px;
  background-color: #2a2a2a;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  transition: all .5s;
}

.about-us .right-content ul li a:hover {
  background-color: #eee;
  color: #2a2a2a;
}

.our-team {
  margin-top: 100px;
  padding-top: 90px;
  padding-bottom: 90px;
  border-top: 3px dotted #eee;
}

.our-team .section-heading {
  margin-bottom: 60px;
  text-align: center;
}

.our-team .section-heading h2 {
  margin-bottom: 10px;
}

.our-team .team-item .thumb {
  position: relative;
}

.our-team .team-item .thumb img {
  width: 100%;
  overflow: hidden;
}

.our-team .team-item .thumb .hover-effect {
  position: absolute;
  background-color: rgba(0,0,0,0.9);
  width: 100%;
  text-align: center;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.our-team .team-item .thumb:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

.our-team .team-item .thumb .hover-effect .inner-content {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  transform: translateY(-22px);
}

.our-team .team-item .thumb .hover-effect .inner-content ul li {
  display: inline-block;
  margin: 0px 5px;
}

.our-team .team-item .thumb .hover-effect .inner-content ul li a {
  width: 44px;
  height: 44px;
  background-color: #fff;
  color: #2a2a2a;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  transition: all .3s;
}

.our-team .team-item .thumb .hover-effect .inner-content ul li a:hover {
  background-color: #2a2a2a;
  color: #fff;
}

.our-team .team-item .down-content {
  text-align: center;
  padding-top: 25px;
}

.our-team .team-item .down-content h4 {
  font-size: 24px;
  color: #2a2a2a;
  font-weight: 700;
  margin-bottom: 5px;
}

.our-team .team-item .down-content span {
  font-size: 14px;
  color: #a1a1a1;
  font-weight: 500;
  display: block;
  font-style: italic;
}

.our-services {
  padding-top: 90px;
  padding-bottom: 90px;
  border-top: 3px dotted #eee;
  border-bottom: 3px dotted #eee;
}

.our-services .section-heading {
  margin-bottom: 60px;
  text-align: center;
}

.our-services .section-heading h2 {
  margin-bottom: 10px;
}

.our-services .service-item {
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.10);
  text-align: center;
}

.our-services .service-item img {
  width: 100%;
  overflow: hidden;
}

.our-services .service-item h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.our-services .service-item p {
  margin-bottom: 25px;
}



/* 
---------------------------------------------
contact Us Page
--------------------------------------------- 
*/
.contact-us {
  margin-top: 40px;
  margin-bottom: 50px;
}
.contact-us .section-heading {
  margin-bottom: 30px;
}
.contact-us .add-sec {
  margin-bottom: 5%;
  width: 100%;
}
.contact-us .con-info {
  font-size: 22px;
  margin-bottom: 9px;
  text-transform: uppercase;
  color: #484848;
  font-weight: 600;
}
.contact-us .address-hed {
  font-size: 17px;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #484848;
}
.contact-us .add-p {
  font-size: 15px;
  margin-bottom: 7px;
  color: #484848;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: .2px;
}
.contact-us .gst-b { 
  font-weight: 500;
}
.contact-us .tel-no {
  font-size: 15px; 
  margin-bottom: 9px;
  color: #484848;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: .2px;
}
.contact-us .tel-no a {
  color: #484848;
}
 

/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1200px) {
  
}

@media (max-width: 992px) {
  
  .header-area .main-nav .nav li.submenu:after {
    right: 3px;
  }
  .header-area .main-nav .nav li.submenu {
    padding-right: 15px;
  }
  .header-area .main-nav .nav li {
    padding-right: 5px;
    padding-left: 5px;
  }
  .header-area .main-nav .nav li a {
    font-size: 14px;
    letter-spacing: 0px;
  }
 
  .about .left-content {
    margin-bottom: 30px;
  }
  .about .right-content .types {
    margin-top: 30px;
  }

  .about-us .right-content {
    margin-left: 0px;
    margin-top: 30px;
  }
  .our-team .team-item {
    margin-bottom: 30px;
  }
  .our-services .service-item {
    margin-bottom: 30px;
  }

}

@media (max-width: 767px) {
  
  footer {
    text-align: center;
  }
  footer h4 {
    margin-top: 30px;
  }
  footer .follow-us { 
    text-align: center;
  }
  footer .logo img { 
    margin-top: 0;
  }
  footer .logo {
    margin-bottom: 20px;
  }
  .product-container .image-container {
    width: 100%;
  }
  .product-container .product-details {
    width: 100%;
    padding-left: 0px;
    margin-top: 20px;
  }
  .product-details .heding-h1 {
    font-size: 20px; 
    margin-bottom: 11px;
  }
  .product-details .price {
    font-size: 16px;
    font-weight: 500;
    color: #ed0a13;
    margin-bottom: 10px;
  }
  .product-details .pro-detail {
    font-size: 18px; 
    margin-bottom: 10px; 
  }
  .product-details table td {
    padding: 5px;
    font-size: 12px; 
  }
  .product-container .button-container .inquiry-btn {
    max-width: 150px;
    padding: 10px;
    font-size: 15px;
    border-radius: 6px;
  }
  .product-specs-section h2 {
    font-size: 18px; 
  }
  .product-specs-section .specs-ul { 
    padding: 10px 0px; 
  }
  .product-specs-section .specs-ul li {
    font-size: 12px;
    line-height: 18px;
  }
  .product-specs-section .specs-ul li { 
    font-size: 12px; 
    padding: 8px 0 8px 0;
    margin: 0; 
    margin-right: 0%;
    margin-bottom: -1px;
    line-height: 18px;
    width: 100%;
  }
  .product-specs-section {
    width: 100%;
    margin-bottom: 25px;
  }
  .inquiry-box .section-heading .product-h1 {
    font-size: 22px !important; 
  }
 
  .inquiry-col .form-group { 
    margin-bottom: 0;
  } 
  .inquiry-col .form-group div {
    width: 100%;
    margin-bottom:15px;
  }
  .inquiry-col label { 
    font-size: 14px;
  }
  .inquiry-col button { 
    padding: 10px; 
    font-size: 15px;
  }
  .inquiry-col input, .inquiry-col textarea { 
    padding: 8px;
    font-size: 15px;
  }

  
.clients .clients-desk {
  display: none; 
}
.clients .clients-mob {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.products-box .section-heading { 
  margin-bottom: 15px;
}
.contact-us .address-hed {
  font-size: 15px; 
}
.contact-us .con-info {
  font-size: 20px;
  margin-bottom: 5px;
}
.contact-us .add-p {
  font-size: 13px;
  margin-bottom: 5px; 
  line-height: 22px; 
}
.contact-us .gst-b {
  margin-bottom: 15px; 
}
.contact-us .tel-no {
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 22px;
}

.products-box .section-heading .product-h1,
.about .left-content h5,
.section-heading h2 {
  font-size: 26px; 
}
.products-slider .section-heading {
  margin-bottom: 15px;
}
.about .photo-img {
  max-width: 230px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.about .certificate-img {
  width: 100%;
  margin-right: 0%;
  margin-bottom: 5%;
}

}

@media (max-width: 600px) {
  .products-slider .item {
    border: 1px solid #eee;
    min-width: 230px;
    width: 230px;
    max-width: 230px;
  }
  .products-slider .item .down-content h4 {
    font-size: 15px;
  }
  .products-slider .item .down-content .price-rs {
    font-size: 14px;
  }
  .products-slider .item .down-content .view-more {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .products-slider .owl-nav .owl-prev {
    left: -10px;
  }
  .products-slider .owl-nav .owl-next {
    right: -15px;
    border-radius: 10px 10px 0px 0px;
  }
  .products-slider .owl-nav .owl-prev::before,
  .products-slider .owl-nav .owl-next::before { 
    font-size: 23px; 
    width: 37px;
    height: 37px;
    background-color: #2a2a2a;
    line-height: 32px;
    border: 1px solid #2a2a2a;
    color: #fff;
    border-radius: 4px;
    opacity: 0.7;
  }
  .products-box .item .down-content h4 {
    font-size: 16px; 
    font-weight: 600; 
}
  .pr-dt-sl .owl-nav .owl-prev {
    left: 10px;
  }
  .pr-dt-sl .owl-nav .owl-next {
    right: 5px;
    border-radius: 10px 10px 0px 0px;
  }
  .pr-dt-sl .owl-nav .owl-prev::before,
  .pr-dt-sl .owl-nav .owl-next::before { 
    font-size: 21px; 
    width: 37px;
    height: 37px;
    background-color: #dddddd;
    line-height: 33px;
    border: 1px solid #dddddd;
    color: #000000;
    border-radius: 50%;
  }
  .pr-dt-sl .item .thumb img {
    width: 100%;
    border: none;
  }
  .pr-dt-sl .item {
    border: 1px solid #eee;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
  }
  .about .left-content p {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 21px;
  }
  .about .left-content .main-border-button a { 
    margin-top: 10px; 
    font-size: 14px;  
    padding: 8px 20px;
  }
  .banner-pd .desktop-img { 
    display: none;
  }
  .banner-pd .mobile-img {
    width: 100%;
    display: block;
  }
  .banner-pd .banner-h1 { 
    font-size: 27px;
    font-weight: 500; 
  }

  .services-box .about-img {
    margin-bottom: 0px;
    margin-top: 17px;
  }
  .services-box {
    padding: 30px 0px 30px 0px;
  }
  .about .sv-gl-h2 {
    font-size: 20px;
  }
  .section-heading { 
    margin-bottom: 10px;
  }
  .about h1 {
    font-size: 23px; 
  }
  .banner-section {
    padding-top: 70px; 
  }
/** For video height code start **/ 
.video-banner {
  width: 100%;
  height:230px; 
  object-fit: cover;
  pointer-events: none;  
} 
/** For video height code End **/
.banner-section .banner-text { 
  height: 230px; 
}
.banner-section .banner-text h1 {
  font-size: 25px; 
  line-height: 32px;
}

}