﻿@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
      url('../fonts/Roboto-Bold.woff') format('woff');
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
      url('../fonts/Roboto-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
      url('../fonts/Roboto-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'fontello';
  src:url('../fonts/fontello.woff2') format('woff2'),
       url('../fonts/fontello.woff') format('woff');
       font-weight: normal;
       font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before, .slick-prev:before, .slick-next:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-phone:before { content: '\e800'; } /* '' */
.icon-search:before { content: '\e801'; } /* '' */
.icon-twitter:before { content: '\e802'; } /* '' */
.icon-location:before { content: '\e803'; } /* '' */
.icon-left-open-mini:before, .slick-prev:before { content: '\e804'; } /* '' */
.icon-right-open-mini:before, .slick-next:before { content: '\e805'; } /* '' */
.icon-down-open-mini:before { content: '\e806'; } /* '' */
.icon-up-open-mini:before { content: '\e807'; } /* '' */
.icon-left-small:before { content: '\e808'; } /* '' */
.icon-right-small:before { content: '\e809'; } /* '' */
.icon-mail-alt:before { content: '\f0e0'; } /* '' */
.icon-linkedin:before { content: '\f0e1'; } /* '' */
.icon-youtube-play:before { content: '\f16a'; } /* '' */
.icon-instagram:before { content: '\f16d'; } /* '' */
.icon-facebook:before { content: '\f30c'; } /* '' */
.icon-play:before { content: '\e80a'; } /* '' */

:root{
   --primary-font:'Poppins', sans-serif;
   --black:#111;
   --gray:#666;
   --red:#D7181F;
   --white:#fff;
   --gray-bg:#F2F2F2;

}
body {
    width: 100%;
    height: 100%;
    font-family: var(--primary-font);
    font-weight: 300;
    font-size:16px;
    background-color:var(--white);
    line-height:1.8;
	  color:var(--black);
    font-display: swap;
}
html {
    width: 100%;
    height: 100%;
}
a {
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}
button:focus {
    outline: 0px dotted;
}

b, strong{
  font-family: var(--primary-font);
	font-weight: 500;
	color:var(--black);
  }
p{
	color:var(--black);
	line-height:1.8;
	font-size: 16px;
	}

h1{
    font-family: var(--primary-font);
    color:var(--black);
    line-height:1.25;
    font-size:40px;
    font-weight:500;
    margin-top: 0;
    margin-bottom:20px;
}
h2{
  font-family: var(--primary-font);
  color:var(--black);
  line-height:1.4;
  font-size:36px;
  font-weight:500;
  margin-top: 0;
  margin-bottom:35px;
}
h3{
   font-family: var(--primary-font);
   color: var(--black);
   font-size:21px;
   line-height:1.4;
   font-weight: 500;
}
h4{
  font-family: var(--primary-font);
  color: var(--black);
  font-size:18px;
  line-height:1.5;
  font-weight:500;
}
.text-justify{
	text-align: justify;
}
.row-box{
	width:100%;
	clear:both;
	display: flex;
	flex-wrap: wrap;
}
section, footer{
	width:100%;
	clear:both;
  display: flex;
	flex-wrap: wrap;
  position: relative;
	}
.gray-bg{
  background-color:var(--gray-bg);
}  
.m-top{
  margin-top:95px;
}	
.padding{
	padding:60px 0;
	}
.padding-sm{
	padding:40px 0;
	}
.rotate img {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.rotate:hover img {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.img-zoom img{
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.img-zoom:hover img, .img-zoom:hover img{
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.zoom {
  -webkit-animation: zoomout 10s ease-in infinite;
  animation: zoomout 10s ease-in infinite;
  transition: all .5s ease-in-out;
  overflow: hidden;
}
/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
} /*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {transform: scale(1.2);}
  50% {transform: scale(1);}
  100% {transform: scale(1.2);}
}
@keyframes zoomout {
    0% {transform: scale(1.2);}
  50% {transform: scale(1);}
  100% {transform: scale(1.2);}
}/*End of Zoom out Keyframes */

/*navbar*/
.navbar-toggler{
	border:0;
}
.navbar-toggler span {
    width: 25px;
    height:2px;
    background:#000;
    display: block;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 6px;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.navbar-toggler span:nth-child(1) {
    width: 16px;
}
.navbar-toggler:hover span:nth-child(1) {
    width: 25px;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    width: 25px;
    -webkit-transform: rotate(45deg) translate(5px,5px);
    -ms-transform: rotate(45deg) translate(5px,5px);
    transform: rotate(45deg) translate(5px,5px);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2){
	opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3){
	-webkit-transform:rotate(-45deg) translate(4px,-4px);
	-ms-transform:rotate(-45deg) translate(4px,-4px);
	transform:rotate(-45deg) translate(4px,-4px);
}
.navbar-brand img{
  width:175px;
}
.navbar-expand-lg .navbar-nav .nav-link{
  font-size:16px;
  color:#000;
  padding:29px 19px;
  font-weight: normal;
}
.navbar-expand-lg .navbar-nav .nav-link:hover{
  color:var(--orange);
}
.dropdown-menu{
	min-width: 16rem;
	margin-top: 0;
  border:0;
  border-top: 1px solid var(--orange);
	box-shadow:0 14px 14px 0 rgba(0, 0, 0, 0.185);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-radius: 0;
}
.dropdown-menu .dropdown-item {
    padding:.36rem 1.5rem;
    font-weight: normal;
    font-size:16px;
    border: 0;
    color: #000;
    white-space: normal;
}
.dropdown-menu .dropdown-item:hover{
  color:var(--red);
  padding-left:1.8rem;
}
.nav-link.dropdown-toggle::after{
  border-top: 0.3em solid #666;
  content:none;
}
.dropdown-menu li.dropdown::after {
  position: absolute;
  content: "›";
  right: 17px;
  top:1px;
  font-size: 19px;
  color: #333;
  border:0;
}
.dropdown-menu li.dropdown:hover::after{color:var(--orange);}
.dropdown-menu li.dropdown .dropdown-toggle::after{
content: none;
}
.navbar  li.dropdown:hover > a{color:var(--orange)}
.navbar ul.dropdown-menu > li.dropdown:hover > a{background: #fff; color:var(--orange);}
.dropdown-item:hover{background: #fff; color:var(--orange)}
@media only screen and (min-width:991px) {
  .navbar ul li:hover> .dropdown-menu{display:block}
  .navbar ul .dropdown-menu{position:absolute;top:100%;left:0;min-width:280px;display:none;margin:0;}
  .navbar ul li.mega-menu:hover > ul {
    display: flex;
    min-width:500px;
    flex-wrap: wrap;
    padding: 10px;
  }
}
.navbar-expand-lg .navbar-nav .nav-item:last-child{
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.navbar ul li.mega-menu:hover > ul li{
  flex: 0 0 auto;
  width: 50%;
}
.navbar ul li.mega-menu:hover > ul li a{
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.mega-menu li img{
  width: 40px;
  margin-right: 15px;
}
.mega-menu li:hover img{
  filter: gray; /* IE5+ */
  -webkit-filter: grayscale(1); 
}
.fixed-top{
  background-color:var(--white);
}
.fix-nav .navbar {
  background-color: #fff;
  padding: 0;
  -webkit-box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
  -moz-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
  box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.fix-nav .navbar-brand img {
  width:140px;
}
.fix-nav .navbar-expand-lg .navbar-nav .nav-link {
  padding: 25px 20px
}
.btn{
  border-radius:0px 10px 0px 10px;
  padding: 9px 22px;
  font-family:var(--primary-font);
  font-weight:normal;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}  
.btn-red{
border:0;
background-color:#fff;
color: #ffffff;
-webkit-box-shadow: 0 0 0 3em var(--red) inset;
box-shadow: 0 0 0 3em var(--red) inset;
}
.btn-red:hover{
background-color:#fff;
color:var(--red);
-webkit-box-shadow: 0 0 0 1px var(--red) inset;
box-shadow: 0 0 0 1px var(--red) inset;
}

.banner{
  display: block;
  background-color:var(--black);
}
.banner img{
  opacity:0.5;
}
.banner .banner-text{
  position: absolute;
  max-width:600px;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
}
.banner h1{
  color: var(--white);
  margin-bottom:30px;
}
.banner p{
  color:var(--white);
  margin-bottom:0;
  font-size:20px;
}
.f-icons {
  display: flex;
  margin-bottom: 10px;
}
.icon {
  margin-right: 8px;
  text-align: center;
  font-size: 21px;
  display: flex;
  width:22px;
  height:22px;
  color:var(--red);
}
.icon-mail-alt{
  font-size:16px;
}
.f-icon-text{
  -ms-flex: 1;
  flex: 1;
}
.f-icon-text p{
  margin-bottom:0;
}

footer{
  background-color:#e9e9e9;
  padding-top:50px;
  padding-bottom:30px;
}
footer ul{
  list-style-type:none;
  padding-left:0;
}
footer ul li a{
  color: #333333;
  font-size: 15px;
  padding: 6px 0;
  display: block;
}
footer ul li a:hover{
  color:var(--red);
  padding-left:5px;
}
footer ul li{
  line-height:1.3;
}
footer p{
  font-size:15px;
}
footer a{
  color:#333333;
}
footer a:hover{
  color:var(--orange);
}
footer .f-icons .icon{
  color: var(--red);
}
.footer-bottom {
  padding-top: 15px;
  background-color: var(--black);
}
.footer-bottom-text{
  display: flex;
  justify-content: space-between;
}
.footer-bottom p, .footer-bottom p a{
  color:var(--white);
  font-size: 15px;
}
.follo-icon {
  display: flex;
  align-items: center;
  justify-content:center;
}
.follo-icon a {
  background-color:transparent;
  padding:0px;
  border-radius: 50%;
  display: block;
  width:33px;
  height:33px;
  text-align: center;
  margin: 3px 5px;
  font-size:18px;
  color:var(--red);
  border:1px solid #AEAEAE;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.follo-icon a:hover{
  background-color:var(--red);
  color:var(--white);
  border-color:var(--red);
}
.f-logo{
  text-align: center;
}
.f-logo img{
  margin-bottom:30px;
}
.accordion-button:not(.collapsed){
  background-color:transparent;
  box-shadow: none;
}
.accordion-button{
  font-size:inherit;
  font-weight: inherit;
  padding-left: 0;
  padding-right: 0;
  background-color:transparent;
}
.accordion-body{
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
.accordion .accordion-item{
  border:0;
  border-bottom:1px solid #ddd;
  padding: 7px 0;
  background-color:transparent;
}
.accordion .accordion-item:last-child{
  border-bottom:0;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed){
  color:var(--red);
}
.why-bg-i{
  position: absolute;
}
.why-img-box{
  position: relative;
  padding-right: 25px;
}
.why-bg-i{
  padding:15px;
  background-color:var(--white);
  border-radius: 10px;
  -webkit-box-shadow:0px 0px 18px 0px rgba(54, 54, 54, 0.26);
  -moz-box-shadow:0px 0px 18px 0px rgba(54, 54, 54, 0.26);
  box-shadow:0px 0px 18px 0px rgba(54, 54, 54, 0.26)
}
.wbi-top{
  top:-20px;
  left:-20px;
}
.wbi-bottom{
  bottom:-20px;
  right:0px;
}
.wbi-bottom img + img{
  padding-left:15px;
}
.accordion-button:not(.collapsed)::after {
  background-image:url(../images/d-arrow.svg);
}
.num-count .icon-text {
  display: flex;
    align-items: start;
    justify-content: start;
  flex-direction: row;
  text-align: left;
}
.num-count .icon-text img {
  flex: 0 0 auto;
}
.text-num {
  padding-left: 15px;
}
.text-num p {
  margin-bottom: 0;
  line-height: 1.5;
}
.num-count{
  background-color:var(--black);
  background-image:url(../images/banner1.jpg);
  background-attachment: fixed;
  position: relative;
  z-index:1;
}
.num-count::before{
  content:'';
  position: absolute;
  z-index:-1;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0, 0, 0, 0.699);
}
.num-count h3{
  font-size:36px;
  line-height: 1;
}
.num-count h3, .num-count p{
  color:var(--white);
}
.testimonials .coma{
 margin:0 auto 30px auto;
}
.testimonials .slick-slide{
  padding:0 20px;
}
.slick-prev, .slick-next{
  width:36px;
  height:36px;
}
.slick-prev:before, .slick-next:before{
  font-size:36px;
}
.banner .slick-prev {
  left: 30px;
  z-index: 2;
}
.banner .slick-next {
  right: 30px;
  z-index: 2;
}
.banner .slick-prev:before, .banner .slick-next:before {
  color:var(--white);
}
.banner .slick-slide img {
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transform: scale(1.2);
}
.banner .slick-active img {
  transform: scale(1);
}
.banner .slick-slide .banner-text{
  display: none;
}
.banner .slick-slide.slick-active .banner-text{
   display: flex;
}
.delay-1s{
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.delay-1-5s{
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.prodcts-list{
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.prodcts-list li {
  flex: 0 0 auto;
  width: 20%;
  padding:10px;
  text-align: center;
}

.prodcts-list li p{
  font-size:15px;
  color:var(--gray);
  line-height: 1.6;
}
.prodcts-list li a:hover h3{
  color:var(--red);
}
.p-img{
  overflow: hidden;
  border-radius:10px;
  margin-bottom: 20px;
}
.testimonials p{
  font-size:18px;
  max-width:80%;
  margin:0 auto;
}
.test-cl{
  padding-top:20px;
}
.test-cl img{
  border-radius:50%;
  max-width:60px;
  margin:0 auto 10px auto;
}
.test-cl i{
  font-style: normal;
  font-size:15px;
}
.testimonials .slick-prev {
  left: -70px;
}
.testimonials .slick-next{
  right: -70px;
}

.clients .slick-slide{
  padding:5px ;
}
.clients .img-zoom img{
  margin:0 auto;
  max-width:100%;
}
.btn-brochure{
  cursor: pointer;
    transform: rotate(7deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    top: 45%;
    z-index: 99;
    color: #fff;
    padding: 10px;
    margin: 0;
    width: 131px;
    height: 59px;
    float: right;
    text-align: center;
    border-top-left-radius:8px;
    border-top-right-radius:8px;
    font-size:16px;
    position: fixed;
    left: auto;
    right: -59px;
    line-height: 17px;
    background-color:var(--red);
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.btn-brochure:hover{
  background-color:#333;
  color:#fff;
}
.btn-brochure img{
  margin-left:5px;
}
.banner-inner{
  position: relative;
  background-color: var(--black);
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: column;
}
.banner-inner img{
  opacity:0.5;
}
.banner-inner h1{
  position: absolute;
  top: 0;
  z-index: 1;
  bottom: 0;
  display: flex;
  align-items: center;
  color:var(--white);
  margin-bottom:0;
}
.img-box-d {
  overflow: hidden;
  height: 100%;
}
.img-box-d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.w-box {
  display: block;
  width:100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 12px 0px rgb(0, 0, 0, 0.11);
}
.certification-page a{
  cursor: zoom-in;
}
.list {
  width: 100%;
  padding-left: 0;
  list-style-type: none;
}
.list li{
  font-size: 16px;
  position: relative;
  padding-left: 19px;
  line-height: 28px;
  padding-bottom: 12px;
  font-weight: 300;
  color:var(--black);
}
.list li::after{
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--red);
  top: 10px;
  left: 0;
}
input.form-control, select.form-control {
  height: 47px;
}

.test-box{
  border:1px solid #ced4da;
  border-radius:20px;
  padding:30px;
  display: block;
  background-image: url(../images/coma.png);
  background-repeat: no-repeat;
  background-position:bottom 28px right 32px;
  background-color:var(--white);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.test-box .test-cl{
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 12px
}
.test-box .test-cl img{
  margin:0;
}
.test-box p{
  text-align: justify;
}
.grid-box {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
.grid-item {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 25px;
  width: 100%;
}
 
.test-box:hover{
  background-color:var(--white);
  border-color:var(--red);
  -webkit-box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
    -moz-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
    box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.clients-page .img-zoom{
   border:1px solid #ddd;
   border-radius: 15px;
   padding:15px;
   overflow: hidden;
}
.about-page p{
  text-align: justify;
}
.img-box-d{
  padding-bottom:15px;
}
.table{
  box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
}
.table tr th {
  background-color:var(--gray) !important;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  vertical-align: middle;
}
.table>tbody>tr:nth-of-type(odd)>* {
  background-color:#f9f9f9;
}
#gallery .img-zoom{
  overflow: hidden;
  display: block;
}
.pro-details h4{
  font-size:16px;
}
.pro-details .w-box + .w-box{
  margin-top:30px;
}
.ind-app .img-zoom{
  overflow: hidden;
}
.w-box-h100{
  height:100%;
  margin-bottom:0;
}
.journey-box {
  display: flex;
  position: relative;
  padding-bottom: 30px;
  width: 100%;
}
.journey-box::before {
  content: '';
  background-color:#999999;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 20px;
  left:25px;
}
.journey-box .numb {
  font-size:20px;
  background-color: var(--red);
  position: relative;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-box-i {
  border: 1px solid #ddd;
  background-color:var(--white);
  padding: 30px;
  border-radius: 10px;
  position: relative;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(54, 54, 54, 0.26);
    -moz-box-shadow: 0px 0px 18px 0px rgba(54, 54, 54, 0.26);
    box-shadow: 0px 0px 18px 0px rgba(54, 54, 54, 0.26);
}
.journey-box .text-box-i {
  margin-left: 28px;
}
.journey-box .text-box-i::before {
  content: '';
  border-width: 7px 12px 7px 0px;
  border-color: transparent #999999 transparent transparent;
  border-style: solid;
  top: 19px;
  right: auto;
  left: -13px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
}
.compalte-pro{
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 210px;
}
.numb img{
  width:18px;
}
.vision-page .w-box{
  position: relative;
  z-index:1;
  background-color:#999;
  color:var(--white);
}
.industries-page .br-box {
  height: 100%;
}
.industries-page .br-box img {
  width:80px;
}
.br-box {
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}
.br-box:hover{
  border-color:var(--red);
}
.br-box p{
  margin-bottom:0;
}
.tolerance-table {
  text-align: left;
}
.tolerance-table tr td{
  min-width:180px;
  background-color:var(--white);
}
.tolerance-table p{
  margin-bottom:5px;
}
.table tr td, .table tr th{
  padding: .4rem 1rem;
  vertical-align: middle;
}
ol{
  padding-left:15px;
}
.tolerance-table tr td:last-child{
  min-width: 230px;
}
.vi-mi img{
  width:100px;
  margin-bottom:10px;
}
.vi-mi .w-box{
  background-color:var(--white);
  height: 100%;
}
.vi-mi h2, .vision-page h2{
  margin-bottom:30px;
}
.vision-page p{
  text-align: justify;
}
/* .data-sec{
  background-color:#f9f9f9;
} */
.table{
  border-color:#b9b9b9;
}
.sub-list{
  list-style-type: disc;
  padding-left:44px;
  margin-bottom:8px;
}
.sub-list li, .sub-list li a{
  font-size:14px;
  color:var(--gray);
  line-height: 1.7;
}
.sub-list li a:hover{
  color:var(--red);
  padding-left:3px;
}
.manufact-page .text-box-i{
  display: flex;
  gap:30px;
}
.manufact-page .text-box-i img{
  width:350px;
  border-radius:10px;
}
.select-box {
  background: url(../images/arrow-dwon.svg) right 10px center no-repeat;
  width: 100%;
  padding-right: 26px;
  background-size: 11px;
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #b6b6b6;
  font-family: 'arial';
  font-size: 15px;
  color: #222222;
}
.banner-text1{
  position: absolute;
  max-width: 1170px;
  left: 15px;
  right: 15px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: start;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
}
.banner-text1 ul{
  padding-left:20px;
  margin-top: 40px;
  margin-bottom:25px;
}
.banner-text1 ul li{
  font-size:18px;
  color:var(--white);
  padding-bottom:10px;
}
.banner-text1 ~ img, .banner-text1  img{
  opacity:1;
}
.contact-page .map{
  margin-top:40px;
  height:270px;
  border-radius: 20px;
}
.tab-top-data{
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 15px;
  margin-bottom:15px;
  margin-top:10px;
}
.tab-top-data p{
  margin-bottom:0;
}
.pro-details ul li a{
  color:var(--black);
}
.pro-details ul li a:hover{
  color:var(--red);
}
.r-qoute .br-box{
  padding:50px 30px;
}
.form-control[type=file] {
  line-height: 2.3;
}
.industries-page .accordion-button{
   background-repeat: no-repeat;
    padding: 60px 30px;
    background-position: center;
    background-size:cover;
    color:var(--white);
    border-radius: 6px;
}
.industries-page .accordion-button::after{
  background-image:url(../images/d-arrow.png);
}
.industries-page #headingOne .accordion-button{
  background-image:url(../images/agriculture.jpg);
}
.industries-page #headingTwo .accordion-button{
  background-image:url(../images/building-construction.jpg);
}
.industries-page #headingThree .accordion-button{
  background-image:url(../images/industrial-manufacturing.jpg);
}
.industries-page #headingFour .accordion-button{
  background-image:url(../images/power-utilities.jpg);
}
.industries-page #headingFive .accordion-button{
  background-image:url(../images/transportation.jpg);
}
.industries-page .accordion-body{
  padding:30px;
}

.industries-page .accordion .accordion-item {
  border: 0;
  padding:0;
  margin-bottom:25px;
  border-radius: 10px;
  background-color:var(--white);
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 0px 12px 0px rgb(0, 0, 0, 0.11);
}
.industries-page .accordion-collapse {
  margin-top:15px;
}
.csr-p img{
  width:60px;
  margin-bottom:15px;
}
.br-b100 .br-box{
  height:100%;
}
.list4{
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  max-width:600px;
  margin:0 auto 30px auto;
}
.list4 li::after{
  content: none;
}
.list4 li {
  padding:0;
  display: block;
}
.list4 li a{
  padding:10px 15px;
  border-radius:8px;
  color:var(--black);
  background-color:var(--gray-bg);
  display: block;
}
.gray-bg .list4 li a{
  background-color:var(--white);
}
.list4 li a:hover{
  background-color:var(--red);
  color:var(--white);
}
.b-appl .w-box img{
  width:60px;
  margin-bottom:10px;
}
.b-appl .w-box{
  height:100%;
}
.error{
  font-size:14px;
  color:red;
}

@media only screen and (min-width:991px) {
  .page-section{
    overflow:hidden;
  }
  .left-content{
      -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
      transform: translateX(-30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .right-content{
      -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
      transform: translateX(30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .bottom-content{
      opacity: 0;
      -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
      transform: translateY(30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .top-content{
      opacity: 0;
      -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
      transform: translateY(-30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .zoom-content{
    opacity: 0;
    -moz-transform: scale(0);
      -webkit-transform: scale(0);
      transform: scale(0);
    -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .animate .zoom-content{
    opacity: 1;
    -moz-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1)
  }
  .animate .left-content, .animate .right-content {
    opacity: 1;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
  }
  .animate .bottom-content, .animate .top-content{
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
  }
 
  .navbar{
    padding-bottom:0;
  }

  }
 

@media (max-width:767px) {
  h1{
    font-size:25px;
  }
  .banner h1{
    font-size:24px;
    margin-bottom: 18px;
  }
  .banner-inner h1{
    font-size:24px;
  }
  .banner img {
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 100/50;
  }
  .banner .btn {
    padding: 7px 30px;
    font-size: 14px;
  }
  h2{
    font-size:24px;
    margin-bottom: 21px;
  }
  .f-box {
    padding: 30px;
  }
  .f-box-m {
    margin-top: 40px;
  }
  .vm-img {
    margin-bottom: 0;
    margin-top: 15px;
  }
  .padding {
    padding: 30px 0;
  }
  h3 {
    font-size:18px;
  }
  .footer-bottom-text{
    flex-direction: column;
  }
  .prodcts-list li {
    width: 100%;
  }
  .testimonials .slick-next {
    right: 0;
    top: 12px;
  }
  .testimonials .slick-prev {
    left: 0;
    top: 12px;
  }
  .why-img-box {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .wbi-top {
    top: 0;
    left: 0;
  }
  .why-bg-i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .why-bg-i img{
    width:100px;
  }
  .wbi-bottom {
    bottom: 10px;
    top: 10px;
  }
  .num-count .icon-text img {
    width:60px;
  }
  .num-count h3 {
    font-size: 28px;
  }
  .num-box .icon-text{
    margin:10px 0;
  }
  .testimonials .slick-slide {
    padding: 0;
  }
  .prodcts-list {
    max-width: 370px;
    margin:0 auto;
  }
  .grid-box {
    -webkit-column-count:1;
    -moz-column-count:1;
    column-count:1;
    -webkit-column-gap:15px;
    -moz-column-gap:15px;
    column-gap:15px;
  }
  .banner-inner img {
    width: 100%;
    aspect-ratio: 100/35;
    object-fit: cover;
    object-position: center;
  }
  .ind-app .col {
    flex: 0 auto;
    width: 50%;
  }
  .crash-app .col {
    flex: 0 auto;
    width: 100%;
  }
  .journey-box .numb {
    font-size: 18px;
    width: 36px;
    height: 35px;
  }
  .journey-box .text-box-i {
    margin-left: 14px;
  }
  .text-box-i {
    padding: 20px;
  }
  .journey-box::before {
    left: 18px;
  }
  .compalte-pro {
    border-radius: 10px;
    height: auto;
  }
  .manufact-page .text-box-i {
    gap:10px;
    flex-direction: column;
  }
  .banner-text1 {
    max-width: 540px;
  }
  .r-qoute .br-box{
    padding:30px;
  }
  .industries-page .accordion-button {
    padding: 40px 20px;
  }
  .industries-page .accordion-body {
    padding: 15px;
  }
  .br-box {
    padding: 20px;
  }
  .list4 {
    grid-template-columns: repeat(1, 1fr);
  }

}
@media (max-width:991px) {
  .navbar-brand img, .fix-nav .navbar-brand img {
    width:100px;
  }
  .navbar-brand{
    padding:10px 0;
  }
  .m-top {
    margin-top:60px;
  }
  .navbar-expand-lg .navbar-nav .nav-link, .fix-nav .navbar-expand-lg .navbar-nav .nav-link {
    padding:8px 10px;
  }
  .fixed-top{
    background-color:var(--white);
    padding: 0;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  li.dropdown::after {
    font-family: "fontello";
    content: '\e805';
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 19px;
    color:var(--orange);
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .dropdown-menu .dropdown-item, .navbar ul li.mega-menu:hover > ul li a{
    padding: .36rem 1rem;
  }
  .mega-menu li img {
    width: 35px;
    margin-right:12px;
  }
  .navbar ul li.mega-menu:hover > ul li {
    width: 100%;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child {
    padding-left: 10px;
    padding-bottom: 15px;
    padding-top: 10px;
  }
  .navbar-collapse {
    margin-top: 15px;
  }
  .case-studies img {
    aspect-ratio: 100/100;
  }
  .follo-icon {
    margin-bottom: 25px;
  }

  .slick-next {
    right: 0;
  }
  .slick-prev {
    left: 0;
  }
  .slick-prev, .slick-next{
    top:45%;
    z-index:1;
  }
  .banner p{
    font-size:15px;
  }
  .banner .banner-text{
    padding:0 20px;
  }
  .banner .slick-prev {
    left:10px;
  }
  .banner .slick-next {
    right:10px;
  }
  h1{
    font-size:31px;
  }
  h2 {
    font-size: 26px;
  }
  .banner-text1 .logo-icon{
    display: none;
  }
  .banner-text1 ul li {
    font-size: 14px;
    padding-bottom: 3px;
  }
  .banner-text1 ul {
    margin-top: 10px;
    margin-bottom: 8px;
  }

}
@media (min-width:768px) and (max-width:991px)  {
  .prodcts-list li {
    width: 33%;
  }
  .why-img-box {
    margin-bottom: 70px;
  }
  .num-count .icon-text {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .num-count h3 {
    font-size: 28px;
    margin-top:20px;
  }
  .testimonials .slick-prev {
    left: -30px;
  }
  .testimonials .slick-next {
    right: -30px;
  }
  .slick-prev {
    left: -30px;
  }
  .slick-next {
    right: -30px;
  }
  .text-num {
    padding-left: 0;
  }
  .banner-text1 {
    max-width:720px;
  }
  .manufact-page .text-box-i {
    gap: 20px;
    align-items: start;
  }
  .manufact-page .text-box-i img {
    width: 250px;
  }

} 
@media (min-width:992px) and (max-width:1199px)  {
  .navbar-brand img, .fix-nav .navbar-brand img {
    width: 115px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 15px;
    padding:16px 10px;
  }
  .fix-nav .navbar-expand-lg .navbar-nav .nav-link {
    padding:16px 10px;
  }
  .m-top {
    margin-top:66px;
  }
  .testimonials .slick-prev {
    left: -40px;
  }
  .testimonials .slick-next {
    right: -40px;
  }
  .num-count .icon-text img {
    width: 55px;
  }
  .num-count h3 {
    font-size: 28px;
  }
  .text-num p {
    font-size: 15px;
  }
  .banner-text1 {
    max-width:960px;
  }
  .banner-text1 .logo-icon{
    width:180px;
  }
  .banner-text1 ul {
    margin-top: 23px;
  }
  .banner-text1 ul li {
    font-size: 16px;
    padding-bottom: 8px;
  }
  .industries-page .container{
    max-width:900px;
  }

}
@media (min-width:1360px) {
  .container{
    max-width:1220px;
  }
  .slick-next {
    right:-40px;
  }
  .slick-prev {
    left:-40px;
  }
  .testimonials{
    max-width:1000px;
    margin:0 auto;
  }
  .get-touch .container {
    max-width: 1000px;
  }
  .industries-page .container{
    max-width:1000px;
  }
}
@media (min-width:1600px) {
  .container{
    max-width:1400px;
  }
  .banner-text1 {
    max-width: 1400px;
  }
  .compalte-pro {
    height: 260px;
  }
  .md .img-box-d img {
    height: auto;
    aspect-ratio: 100/94;
  }
  .industries-page .container{
    max-width:1000px;
  }
 
}


