html{
	 overflow-x: hidden;
}
body{
	margin: auto;
	 overflow-x: hidden;
	 font-family: "Poppins", sans-serif;
}
p{
	margin-bottom: 0;
}










.ip-loader{
    margin-left: 0px!important;
    bottom: 37% !important;
    
}
.loader {
  width: 195px;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  animation: filter-animation 3s infinite;
  
}
.loading img {
    width: 200px;
    animation: swing-rotate 2s ease-in-out infinite;
}

/* Swing Rotation Animation */
@keyframes swing-rotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-45deg); } /* Rotate half to the left */
    50% { transform: rotate(0deg); }   /* Back to center */
    75% { transform: rotate(45deg); }  /* Rotate half to the right */
    100% { transform: rotate(0deg); }  /* Back to center */
}

.social_chat_block {
    border-radius: 30px;
    width: 172px;
    position: fixed;
    bottom: 10px;
    right: 2%;
    background: #ffffff;
    /* border: solid 1px #58585c24; */
    z-index: 9;
    text-align: left;
    text-decoration: none;
    font-size: 15px;
    padding-left: 25px;
    /* transform: skewX(-15deg); */
    padding-right: 25px;
    /* line-height: 42px; */
    color: black;
    font-weight: 500;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    /* border-radius: 50px; */
    float: right;
    padding-top: 10px;
    padding-bottom: 10px;
}
.social_chat_block span {
    font-size: 18px;
    position: relative;
    /* top: 3px; */
    transform: skewX(15deg);
    font-weight: 600;
    color: #000000;
}.ftr-hand {
    width: 28px;
    transform: skewX(15deg);
    margin-left: 8px;
}
.wave {
    animation-name: wave-animation;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    transform-origin: 70% 70%;
    display: inline-block;
}.social_chat_block strong img {
    width: 28px;
    float: right;
}

@keyframes wave-animation {
    0% { transform: rotate( 0.0deg) }
   10% { transform: rotate(14.0deg) }  /* The following five values can be played with to make the waving more or less extreme */
   20% { transform: rotate(-8.0deg) }
   30% { transform: rotate(14.0deg) }
   40% { transform: rotate(-4.0deg) }
   50% { transform: rotate(10.0deg) }
   60% { transform: rotate( 0.0deg) }  /* Reset for the last half to pause */
  100% { transform: rotate( 0.0deg) }
}








.header{
	width: 100%;
	float: left;
	/*background: black;*/
	position: fixed;
	z-index: 1111;
}
.header.active {
    background-color: white;
    background:white;
}
.hdr-main{
	width: 100%;
	float: left;
	border-bottom:1px solid #99918B;
	padding-top: 23px;
	padding-bottom: 16px;

}
.logo{
	width: 45%;
	float: left;
}
.logo img{
	width: 100%;
	float: left;
	max-width: 296px;
	filter: brightness(11111111);
}
.active .logo img {
    -webkit-filter: initial;
    filter: initial;
}

.active .header_menu_area a {
    color: black;
}
.active .header_menu_area img{
    filter: invert(1);
}


.active .click img {
 filter: invert(1);
}
.bnr-sidimg {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid white;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 4px;
}
.bnr-sidimg :after {
    width: 1px;
    height: 91px;
    float: left;
    background: white;
    content: '';
    position: absolute;
    left: 24px;
    top: -111px;
}

.bnr-sidimg h6 {
  color: white;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
 
}

.hd-menus{
	width: 55%;
	float: left;
	padding-top: 21px;
}

.header_menu_area {
  /* width: 100%; */
  float: left;
  text-align: center;
}


.header_menu_area > ul {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0px;
    padding-left: 0px;
    
    float: right;
    /*padding-top: 36px;*/
}
.header_menu_area > ul > li {
      width: auto;
      display: inline-block;
      vertical-align: middle; 
      padding-bottom: 14px;
      padding-left: 2px;
      padding-right: 2px;
}
.header_menu_area > ul > li > a {
    border-radius: 40px;
    width: auto;
    color: #FFFFFF;
     font-weight:400;
    float: left;
    font-size: 14px;
   padding: 0px 24px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    text-decoration: none;
    text-align: center;
}
      
.header_menu_area > ul > li > a:hover:after {
	  top: 4px;
    bottom: 0 !important;
    content: "" !important;
    display: block !important;
    left: 50% !important;
    position: relative !important;
    background: #ffffff !important;
    width: 45% !important;
    height: 2px;
    left: 0 !important;
    transform: scaleX(1) !important;
    transform-origin: left !important;
    transition: transform 0.25s ease-in-out !important;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
/*.active .stable {

top: 4px;
    bottom: 0 !important;
    content: "" !important;
    display: block !important;
    left: 50% !important;
    position: relative !important;
    background: #ED1C24 !important;
    width: 45% !important;
    height: 2px;
    left: 0 !important;
    transform: scaleX(1) !important;
    transform-origin: left !important;
    transition: transform 0.25s ease-in-out !important;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}*/
.active .stable:after {
 background: #bc0011 !important;
}
.active .header_menu_area > ul > li > a:hover:after{
background: #bc0011 !important;
}
.active .menu .menuTrigger .line {
background: #000000;
    }

.stable:after {
    top: 4px;
    bottom: 0 !important;
    content: "" !important;
    display: block !important;
    left: 50% !important;
    position: relative !important;
    background: #ffffff !important;
    width: 45% !important;
    height: 2px;
    left: 0 !important;
    transform: scaleX(1) !important;
    transform-origin: left !important;
    transition: transform 0.25s ease-in-out !important;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.header_menu_area > ul > li:first-child > a:hover:after {
    content: none !important;
    display: none !important;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}


.menu ul li a:hover, .menu ul li:hover>a {
  background: #ed1c24;
    color: #ffffff;
    text-decoration: none;
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}


.menu ul {
    visibility: hidden;
    /* display: none; */
    opacity: 0;
    margin: 0;
    top: 28px;
    padding: 0;
    width: 211px;
    position: absolute;
    left: -39px;
    background: rgb(255 255 255);
    /* background: linear-gradient(95deg, rgba(39, 170, 225, 1) 0%, rgba(9, 115, 186, 1) 100%); */
    z-index: 99;
    transition: transform 0.3s cubic-bezier(0.88, -0.72, 0, 1), opacity 0.3s ease-in-out;
    transform: translate(-4rem);
    transition: all .1s ease-out;
    border-radius: 0;
}


.menu li:first-child {
    margin-left: 0;
}
.menu li:first-child {
    margin-left: 0;
}
.menu ul li {
    display: block;
    float: none;
    background: 0 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);

}
.header_menu_area ul li a img{
	width: 100%;
	float: left;
	max-width: 24px;
}

.menu ul li a {
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 12px 10px;
    display: block;
    color: #000000;;
    text-decoration: none;
    /*background: white;*/
  /*  border-bottom: solid 1px rgb(137 137 137 / 19%);*/
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}


@media (max-width: 1024px) {
    .header_menu_area {
        display: none;
    }
    
    
}

.click{
	width: auto;
	float: right;
}
.click img{
	width: 100%;
	float: left;
	max-width: 33px;
}
.banner-captions {
    float: left;
    width: 100%;
    /* padding: 182px 0px; */
    position: absolute;
    z-index: 1;
}





#banner-video{
    float: left;
    width: 100%;
    height: 766px;
    background-size: cover;
    background-position: 50% 50%;
}

.banner:before {
    content: "";
    position: absolute;
    top:0px;
    height: 766px !important;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background-color: #3a3a3a;
    opacity: 0.5;
}

#myVideo {
    position: relative;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    float: left;
    width: 100%;
    margin-top: 0px;
    /*background: red;*/
    height: 766px !important;
    width: 100% !important;
    object-fit: cover;
    width: 100vw;
}
.banner-captions {
    float: left;
    width: 100%;
    /*padding: 182px 0px;*/
    position: absolute;
    z-index: 1;
}





.fullscreen-video{
    float: right;
    background: white;
    padding: 12px 12px 9px 12px;
    border-radius: 10px 10px 0px 0px;
    margin-top: 0px;
    bottom: -171px;
    position: relative;
}
.fullscreen-video a{
    float: none;
    font-size: 14px;
    font-weight: 500;
    color: #424912;
    margin-left: 10px;
    text-decoration: none;
}
.fullscreen-video a img{
    float: left;
    width: 20px;

}
.banner{
   float: left;
   width: 100%;
   background-color: #3a3a3a;
   height: 766px;

}



.baner-hed {
    float: left;
    width: 100%;
    text-align: center;
    padding-top: 265px;
    padding-bottom: 164px;
}
.baner-hed h2{
   float: left;
   width: 100%;
   font-size: 60px;
   font-weight: 300;
   line-height: 72px;
   color: #FFFFFF;
   padding-bottom: 21px;
}
.baner-hed h2 span{
   font-weight: 700;
   color: #FFFFFF;
}
.slider-ban .owl-nav{
   display: none;
}
.bnr-tag {
  width: 100%;
  text-align: center; /* Center the button horizontally */
  float: left;
}

.bnr-tag a {
  display: inline-block;        /* Needed for text-align to work */
  width: 209px;
  height: 45px;
  text-align: center;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #FFFFFF;
  border-radius: 22px;
  text-decoration: none;
  padding: 11px 0;
  transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    text-decoration: none;
}
.bnr-tag a:hover{
	background: #ED1C24;
	border: 1px solid #ED1C24;
	transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    text-decoration: none;
}















.section1{
	width: 100%;
	float: left;
	padding-top: 62px;
	padding-bottom: 58px;
}
.stion-logo{
	width: 100%;
	float: left;

}
.stion-logo img{
	width: 100%;
	float: left;
	max-width:166px ;
}
.logo-carousel .owl-nav {
   display: none;
}
.section2{
	width: 100%;
	float: left;
}
.stion2-hd{
	width: 100%;
	float: left;
}
.stion2-hd h3{
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 0;
	color: #ED1C24;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 4px;

}
.stion2-hd h2{
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 0;
	color: #000000;
	font-size: 40px;
	font-weight: 500;
	padding-bottom: 38px;

}
.stion2-hd h2 span{
	font-weight: 700;
}
.product-ind{
	width: 100%;
	float: left;
	position: relative;
	margin-bottom: 28px;
}
.product-ind img{
	width: 100%;
	float: left;
	max-width: 376px;
	border-radius: 23px;
}
.product-text{
	padding: 44px 35px;
	width: auto;
	float: left;
	position: absolute;
}
.product-text h2{
	width: 100%;
	float: left;
	text-align: left;
	color: #FFFFFF;
	margin-bottom: 0;
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 8px;
}
.product-text a{
	width: 126px;
	height: 30px;
	background: #ED1C24;
	border-radius: 14px;
	color: white;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	float: left;
	text-align: center;
	padding: 4px 0;
	border: 1px solid #ED1C24;
	transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
  
}
.product-text a:hover{
border: 1px solid white;
background: transparent;
transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;

}







.section3{
	width: 100%;
	float: left;
	padding-top: 120px;
	padding-bottom: 61px;
	position: relative;
}
.sertion-hd{
	width: 100%;
	float: left;
}
.sertion-hd h3{
	width: 100%;
    float: left;
    text-align: center;
    margin-bottom: 0;
    color: #ED1C24;
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 4px;
}
.sertion-hd h2{
	width: 100%;
	float: left;
	text-align: center;
	color: #000000;
	margin-bottom: 0;
	font-size: 38px;
	font-weight: 400;
	line-height: 51px;
	padding-bottom: 15px;

}
.sertion-hd h2 span{
	font-weight: 700;
}
.sertion-hd p{
	width: 100%;
	float: left;
	text-align: center;
	color: #000000;
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	padding: 0 96px;
	padding-bottom: 28px;
}
.redmore {
    width: 100%;
    float: left;
    text-align: center;
}
.redmore a {
    display: inline-block;
    width: 209px;
    height: 45px;
    float: none;
    text-align: center;
    color: #000000;
    background: white;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 22px;
    padding: 11px 0;
    font-weight: 600;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.redmore a:hover{
    color: white;
    background: #ED1C24;
    border: 1px solid #ED1C24;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    
}





.bgicon {
    width: auto;
    float: left;
    position: absolute;
    top: 15px;
    left: -45px;
     animation: rotate 5s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg) translateZ(0);
    }
    to {
        transform: rotate(360deg) translateZ(0);
    }
}
.bgicon img{
	width: 100%;
	float: left;
	max-width: 400px;
	opacity: 30%;
}




/*

.seton3-leftside {
    
     opacity: 0.3;
  
   
}
*/















.section4{
	padding-top: 148px;
	width: 100%;
	float: left;
	background-size: cover;
	height: 907px;
	object-fit: none;
	position: relative;
	background-image: url('../images/section4.png');
}
.section4-hd{
	width: 100%;
	float: left;
}
.section4-hd h2{
	width: 100%;
	float: left;
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 0;
	font-size: 40px;
	font-weight: 400;
	padding-bottom: 85px;
}
.section4-hd h2 span{
	font-weight: 700;
}
.section4-main{
	width: 100%;
	float: left;
}
.section4-main:hover img {
    transform: rotateY(360deg);
    transform-style: preserve-3d;
    transition: transform 0.8s;
}
.section4-main img{
	width: 100%;
	float: left;
	max-width: 76px;
}
.stion4-txt {
    width: 76%;
    float: left;
    padding-left: 20px;
}
.stion4-txt h2{
	width: 100%;
	float: left;
	text-align: left;
	margin-bottom: 0;
	font-size: 22px;
	font-weight: 700;
	color: #FFFFFF;

}
.stion4-txt p{
	width: 100%;
	float: left;
	text-align: left;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
}
.mhn{
	width: 100%;
	float: left;
}
.mhn img{
	width: 87%;
	float: left;
	max-width:310px ;
}
.colmain{
	width: 36%;
	float: left;
}
.colimg{
	margin-top: -65px;
	width: 28%;
	float: left;
}
.white-contant{
	width: 100%;
	float: left;
	padding-top: 55px;
	border-bottom:1px solid #D8D8D8 ;
	padding-bottom: 63px;
}
.white-contant h3{
	width: 100%;
	float: left;
	text-align: left;
	margin-bottom: 0;
	color: #ED1C24;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
}
.white-contant h4{
	width: auto;
	float: left;
	text-align: left;
	color: #000000;
	margin-bottom: 0;
	font-size: 38px;
	font-weight: 400;
	line-height: 51px;
}
.white-contant h4 span{
	font-weight: 700;
}
.white-contant a{
	width: 209px;
	height: 45px;
	float: left;
	text-align: center;
	background: white;
	border-radius: 22px;
	border: 1px solid #000000;
	text-decoration: none;
	padding: 10px 0;
	color: #000000;
	font-size: 15px;
	font-weight: 600;
	margin-left: 57px;
	margin-top: 50px;
	transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.white-contant a:hover {
    color: white;
    background: #ED1C24;
    border: 1px solid #ED1C24;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.footer {
    width: 100%;
    float: left;
    /* padding-top: 66px; */
    padding-bottom: 60px;
}
.ftr-top{
	margin-top: -120px;
	width: 100%;
	float: left;
}

.flogo{
	width: 100%;
	float: left;
	padding-top: 79px;
}
.flogo img{
	width: 100%;
	float: left;
	max-width: 308px;

}
.flogo p{
	width: 100%;
	float: left;
	text-align: left;
	color: #000000;
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	padding-top: 22px;
}
.footer .col-lg-4{
	padding: 0;
}
.ftr-main{
	width: 100%;
	float: left;
}
.ftr-main h3{ 
width: 100%;
float: left;
text-align: left;
color: #000000;
margin-bottom: 0;
font-size: 15px;
font-weight: 700;
padding-bottom: 27px;
padding-top: 66px;
}
.ftr1{
	width: 27%;
	float: left;
	padding-left: 36px;
}
.ftr-main a{
	width: 100%;
	float:left;
	text-align: left;
	text-decoration: none;
	color: #000000;
	font-size: 15px;
	font-weight: 400;
	line-height: 28px;
	transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.ftr-main a:hover{
	color: #ED1C24;
	transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.ftr2 {
    width: 38%;
    float: left;
    padding-left: 55px;
}
.ftr2 h6{
	width: 100%;
	float: left;
	text-align: left;
	color: #000000;
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 600;
	padding-top: 13px;
	padding-bottom: 26px;
	position: relative;
}
.ftr2 h6:after{
	width: 28px;
	height: 1px;
	background: #C10007;
	position: absolute;
	content: '';
	right: 80px;
    top: 21px;
}
.downlode{
	width: 100%;
	float: left;
}
.downlode img{
	width: 100%;
	float: left;
	max-width: 16px;
}
.downlode a{
	width: ;
	float: none;
	text-align: left;
	color: #000000;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	line-height: unset;
	padding-left: 8px;
}
.ftr1 li{
	list-style: none;
	width: 100%;
	float: left;
	position: relative;
}
/*.ftr1 li:after{
	width: 28px;
	height: 1px;
	background: #C10007;
	position: absolute;
	content: '';
	right: 74px;
    top: 14px;
}*/
.ftr3{
	width: 35%;
	float: left;
}
.ftr3 p{
	width: 100%;
	float: left;
	text-align: left;
	font-size: 15px;
	font-weight: 400;
	line-height: 28px;
	padding-bottom: 13px;
	color: #000000;
}
.social{
	width: 100%;
	float: left;
}
.social h6{
	width: 100%;
    float: left;
    text-align: left;
    color: #000000;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 26px;
    position: relative;
}
.social h6:after{
width: 28px;
    height: 1px;
    background: #C10007;
    position: absolute;
    content: '';
    right: 129px;
    top: 9px;
}
.copyriht{
	width: 100%;
	float: left;
	background: #C10007;
	padding: 14px 0;
}
.copyriht h1{
	width: 50%;
	float: left;
	text-align: left;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
}

.copyriht h2{
	width: 50%;
	float: left;
	text-align: right;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
}
.copyriht a{
	text-decoration: none;
	color: white;
}
.social a{
	width: auto;
	float: left;
	padding-right: 15px;
}
.social img{
	width: 100%;
	float: left;
	max-width: 36px;

}
.inner-page{
	padding-bottom: 107px;
	width: 100%;
	float: left;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('../images/about-bg.jpg');

}
.inner-page h2{
	width: 100%;
	float: left;
	color: white;
	margin-bottom: 0;
	font-size: 55px;
	font-weight: 600;
	padding-top: 160px;
	padding-top: 160px;

}
.inner-page h2 span{
	font-weight: 400;
}
.page-thumb {
    float: left;
    width: auto;
}.page-thumb a {
    text-decoration: none;
}
.thumb-nav {
    float: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
}
.inn-about{
	width: 100%;
	float: left;
	padding: 86px 0;
}
.abt-main{
	 width: 100%;
	 float: left;
}
.abt-main img{
	max-width: 530px;
    float: right;
    width: 100%;
    margin-left: 30px;
    border-radius: 30px;
}
.abt-main h3{
	width: auto;
	
	text-align: left;
	color: #ED1C24;
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;

}
.abt-main h2{
	width: auto;
	
	text-align: left;
	color: #000000;
	margin-bottom: 0;
	font-size: 38px;
	font-weight: 400;
	line-height: 51px;
	padding-bottom: 8px;
}
.abt-main h2 span{
	font-weight: 700;
}
.abt-main p{
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	width: auto;
	color: black;
	padding-right: 55%;
}
.inn-foot{
	margin-top: 0;
	background: #f4f4f4;
}
.abt-img {
    float: right;
    width: auto;
    position: relative;
}
.abtcound{
	width: 190px;
	border-radius: 20px;
	background: white;
	position: absolute;
	float: left;
	left: -40px;
	bottom: 35px;
	padding: 25px 18px 25px 18px;
	box-shadow: -13px 5px 37px -24px #010202;
}
.abtcound h6{
	width: 100%;
	float: left;
	text-align: left;
	color: #ED1C24;
	font-size: 62px;
	font-weight: 700;
	margin-bottom: 0;
}
.abtcound h6:after {
    color: #ED1C24;
    font-size: 62px;
    font-weight: 700;
   
    
    content: 'K+';
    position: absolute;
}
.abtcound h5{
	width: 100%;
	float: left;
	text-align: center;
	color: #000000;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 0;
}
.vmall {
    padding-bottom: 65px;
    padding-top: 65px;
    width: 100%;
    float: left;
}.vmall-hd {
    width: 100%;
    float: left;
}
.vmall-hd h2 {
    
    width: 100%;
    float: left;
    text-align: left;
    color: #000000;
    margin-bottom: 0;
    font-size: 38px;
    font-weight: 400;
    line-height: 51px;
    padding-bottom: 8px;
}
.vmall-hd p {
    width: 100%;
   

    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    float: left;
    color: black;
    
}
.v-m {
    background: #bc001108;
    padding: 29px 44px;
    border: 1px solid #bc0011;
    width: 100%;
    float: left;
    border-radius: 35px;
}
.v-m img {
    width: 80px;
    float: left;
}
.v-m h2 {
    padding-top: 13px;
    float: left;
    text-align: left;
    font-size: 28px;
    color: #0D0D0D;
    font-weight: 500;
    text-align: left;
    float: left;
    width: 100%;
}
.v-m p {
    width: 100%;
    float: left;
    font-size: 15px;
    font-weight: 400;
   line-height: 25px;
    text-align: left;
    float: left;
    color: black;

 }
 .productall{
 	width: 100%;
 	float: left;
 	padding: 36px 0;
 	padding-bottom: 86px !important;
 }
 .pro-main{
 	width: 100%;
 	float: left;
 	background: #FFF2F2;
 	border-radius: 31px;
 	padding: 30px 23px;
 	margin-top: 50px;
 }
  .pro-main img{
  	width: 100%;
  	margin: auto;
  	float: none;
  	display: block;
  	text-align: center;
  	max-width: 230px;
  }
    .pro-main h2{
    	width: 100%;
    	float: left;
    	text-align: center;
    	color: #000000;
    	font-size: 18px;
    	font-weight: 600;
    	padding-bottom: 8px;
    	padding-top: 21px;
    }
    .pro-main p{
    	width: 100%;
    	float: left;
    	text-align: center;
    	color: #C1012A;
    	font-size: 15px;
    	font-weight: 500;
    }

#sub-page-intro {
    float: left;
    width: 100%;
    padding-top: 86px;
    padding-bottom: 86px;
}
#sub-page-intro h6 {
    float: left;
    width: 100%;
    color: #232323;
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    line-height: 140%;
    
    padding-bottom: 10px;
}
#sub-page-intro h6 span{
	font-weight: 700;
}
#sub-page-intro p {
    text-align: center;
    float: left;
    width: 100%;
    color: #232323;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 45px;
}
.career-frn {
    float: left;
    width: 100%;
}
.frm-titel {
    float: left;
    padding-bottom: 5px;
    width: 100%;
    color: #232323;
    font-size: 15px;
    font-weight: 600;
}
.career-frm {
    /* border: 1px solid #b0aaaa; */
    color: #131616;
    display: block;
    padding-left: 15px !important;
    font-weight: 400;
    font-size: 15px;
    height: 55px;
    margin-bottom: 30px !important;
    padding: 0 20px;
    outline: none;
    
    width: 100%;
    padding-left: 0px;
    border: none;
    transition: all 500msease;
    border: solid 1px #bc0011;
    margin-top: 3px;
    width: 100%;
    float: left;
    padding: 7px 10px;
    margin-top: 3px;
    border-radius: 8px;
}
.cpt {
    padding-top: 12px;
}.cpt-snd {
    padding-top: 33px;
    float: left;
}

.explore button {
 
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
    border: none;
    background: none;
    display: inline-block;
    width: 209px;
    height: 45px;
    float: none;
    text-align: center;
    color: #000000;
    background: white;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 22px;
    padding: 11px 0;
    font-weight: 600;
}
.contact-inn {
    width: 100%;
    float: left;
    padding: 86px 0;
    position: relative;
}
.iner-ab-b1 {
    width: 100%;
    float: left;
    padding-bottom: 20px;
}

.iner-ab-b1 h2 {
    float: left;
    width: 100%;
    text-align: left;
    line-height: 120%;
    margin-bottom: 45px;
    color: #000000;
    font-size: 38px;
    font-weight: 400;
    line-height: 51px;
    
}
.iner-ab-b1 h2 span {
    font-weight: 700;
}
.contact-bx {
    float: left;
    width: 100%;
}
.con-frm {
    border: 1px solid #37abdfb8;
    float: left;
    width: 100%;
    padding: 15px 25px;
    border-radius: 10px;
    background: white;
    margin-bottom: 18px;
}
.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.con-frm {
    border: 1px solid #bc0011;
    float: left;
    width: 100%;
    padding: 15px 25px;
    border-radius: 10px;
    background: white;
    margin-bottom: 18px;
}
.con-frms {
    width: 100%;
}
.con-frms input {
    color: black;
    display: block;
    font-weight: 400;
    font-size: 15px;
    height: 34px;
    margin-bottom: 0px;
    outline: none;
    background: white;
    width: 100%;
    border: none;
    border: solid 1px transparent;
    float: left;
}
.con-frms textarea {
    color: black;
    display: block;
    font-weight: 400;
    font-size: 15px;
    height: 34px;
    margin-bottom: 0px;
    outline: none;
    background: white;
    width: 100%;
    border: none;
    border: solid 1px transparent;
    width: 100%;
    float: left;
}
.addres-bxs {
    z-index: 99;
    padding: 25px 25px;
    top: -33px;
    width: 25%;
    float: right;
    background: rgb(188 0 17);
    position: absolute;
    border-radius: 10px;
}.addres-bxs h3 {
    width: 100%;
    color: white;
    float: left;
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 10px;
}.addres-bxs p {
    width: 100%;
    float: left;
    text-align: left;
    color: white;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 0px;
}.addres-bxs a {
    text-align: left;
    color: white;
    margin-bottom: 0px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    width: 100%;
    float: left;
    padding-top: 4px;
}.contact-bx2 {
    width: 100%;
    float: left;
}.map {
    padding-left: 30px;
    width: 100%;
    float: left;
}
.addres-bxs1 {
    padding-top: 10px;
}
@media (min-width: 992px) {
    .modal-lg {
        max-width: 920px !important;
    }
}
#enroll{
	z-index:1111;
}
#enroll .modal-content {
     background: #000; 
    background-size: cover;
    border-radius: 30px;

    
    border: none;
}
.close_form {
    border-radius: 30px;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 15px;
    z-index: 999;
    top: 15px;
    background: #ff002a url(../images/close.svg) no-repeat center center;
    background-size: 20px 20px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.mod-new {
    width: 100%;
    float: left;
    padding: 30px;
}
.mod-right {
    width: 100%;
    float: left;
    padding: 70px 30px;
}
.mod-right img {
    width: 100%;
    max-width: 280px;
    float: none;
    display: block;
    text-align: center;
    filter: brightness(25.5);
}
.mod-right h6 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 25px;
}
.mod-right a {
    font-size: 22px;
    color: #ff002a;
    text-decoration: none;
}
.log-sec {
    width: 100%;
    float: left;
    background: #fff;
    padding: 50px 30px;
    border-radius: 30px;
}
.log-field {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}
.log-field label {
    font-size: 15px;
    color: #000;
    width: 100%;
    font-weight: 500;
}
.log-field input {
    width: 100%;
    float: left;
    padding: 13px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    font-size: 15px;
}



@media (max-width: 400px){


.baner-hed h2 {
        font-size: 31px !important;
        line-height: 42px !important;
    }
}

@media (max-width: 575px){

	.addres-bxs h3 {
		text-align: center;
	}
	.addres-bxs p {
		text-align: center;
	}
	.addres-bxs a{
		text-align: center;
	}

.baner-hed {
    padding-bottom: 0;
}
.click{
	display: none;
}

    .logo {
        width: 58%;
    }

.hd-menus {
	 width: 42%;
}
.baner-hed h2{
	font-size: 45px;
	line-height: 60px;
}
.baner-hed h2 br{
	display: none;
}
.bnr-sidimg{
	display: none;
}
.stion2-hd h2 {
	font-size: 35px;
}
.stion-logo img{
	float: none;
	margin: auto;
	display: block;
	text-align: center;
}
.product-ind img{
	max-width: 100%;
}
.sertion-hd h2{
	font-size: 35px;
}
.sertion-hd h2 br{
	display: none;
}

.sertion-hd p {
	padding-left: 0;
	padding-right: 0;
}
.section3 {
	padding-top: 70px;
	
}
.baner-hed {
        padding-top: 190px;
    }
.section4-hd h2{
	font-size: 33px;
}
.banner{
	height: 553px;
}
.banner:before{
	height: 553px !important;
}
#myVideo{
	height: 553px !important;
}
.colmain {
    width: 100%;
 }
.stion4-txt {
    width: 100%;
    padding-left: 0;
    padding-top: 12px;
 }
.section4-main img{
	float: none;
	margin: auto;
	display: block;
	text-align: center;
}
.stion4-txt h2{
	text-align: center;
}
.stion4-txt p{
    padding: 0 10px;
	text-align: center;
}
.colimg {
     margin-top: 0px;
    width: 100%;
    float: left;
    padding-bottom: 60px;
}
.mhn img {
    width: 100%;
    float: none;
    margin: auto;
    display: block;
    text-align: center;
    max-width: 240px;
}
.section4-hd h2{
	padding-bottom: 40px;
}
.section4-main{
	padding-bottom: 40px !important;
}
.section4 {
	padding-bottom: 30px;
	padding-top: 60px;
    height: auto;
    background-image: url('../images/s4mob.jpg');
 }
.white-contant h3{
	text-align: center;
}
.white-contant h4{
	text-align: center;
	font-size: 35px;

}
.white-contant h4 br{
display: block;
}
.ftr-top {
    margin-top: 0;
 }
.white-contant{
	text-align: center;
}
.white-contant a{
	margin-left: auto;

}

.white-contant a {
    display: inline-block;
    float: none;
    text-align: center;
    margin-top: 22px;
 }
.flogo img{
	float: none;
	margin: auto;
	display: block;
	text-align: center;
}
.flogo p{
	text-align: center;
}
.ftr1 {
    width: 100%;
    float: left;
    padding-left: 0;
}
.ftr-main h3{
	padding-bottom: 16px;
    padding-top: 49px;
	text-align: center;
}
.ftr-main a{
	text-align: center;
}
.ftr1 li:after{
	display: none;
}
.ftr2 {
    width: 100%;
    float: left;
    padding-left: 0;
}
.ftr2 h6{
	text-align: center;
}

.ftr2 h6:after{
	display: none;
}
.ftr3 {
    width: 100%;
 }
.ftr3 p{
	text-align: center;
}
.social h6{
	text-align: center;
}
.downlode {
    display: flex;
    flex-direction: column;     /* Stack image and text vertically */
    align-items: center;        /* Center them horizontally */
    justify-content: center;    /* Center them vertically */
             /* Set a height for demo, adjust as needed */
    text-align: center;
}

.downlode img {
    max-width: 20px;            /* You can adjust icon size */
    margin-bottom: 10px;
}

.downlode a {
    text-align: center;
}
.social h6:after{
	display: none;
}



.social {
    width: 100%;
    text-align: center; /* centers inline elements */
}

.social h6 {
    text-align: center;
    margin-bottom: 10px;
}

.social a {
    display: inline-block; /* keep in line */
    margin: 0 10px; /* spacing between icons */
    float: none;
    padding-right: 0;
}

.social img {
    width: 36px;
    height: auto;
    display: block; /* removes gap under image */
}.copyriht h1{
	text-align: center;
	width: 100%;
}

.copyriht h2 {
    width: 100%;
    text-align: center;
 }
.inner-page h2 {
	    font-size: 35px;
	    padding-top: 132px;
}

.inner-page {
    padding-bottom: 60px;
 }
.abt-main img{
	float: none;
	margin: auto;
	display: block;
	text-align: center;
}
.abtcound{
	left: 0;
	bottom: -125px;
}
.abt-main h3{

	padding-top: 159px;
	float: left;
	text-align: center;
	width: 100%;
}

.abt-main h2{
	text-align: center;
	float: left;
	width: 100%;
	font-size: 30px;
	line-height: 45px;
}
.abt-main p{
	width: 100%;
	float: left;
	text-align: center;
	padding-right: 0;

}
.vmall{
	padding-bottom: 30px;
	padding-top: 0;
}
.inn-about{
	padding-bottom: 60px;
}
.vmall-hd h2{
	text-align: center;
}
.vmall-hd h2 br{
    display: none;
}
.vmall-hd p{
	padding-bottom: 30px;
	text-align: center;
}
.v-m{
	margin-bottom: 25px;
}

.v-m img{
	float: none;
	text-align: center;
	margin: auto;
	display: block;

}
.v-m h2{
	text-align: center;
}
.v-m p{
	text-align: center;
}
#sub-page-intro p{
	padding-left: 0;
	padding-right: 0;
}

.cpt-snd {
     padding-top: 0px;
    }

.addres-bxs{
	position: relative;
	width: 100%;
	top: 0;
}
.iner-ab-b1 h2{
	text-align: center;
	font-size: 35px;
}
.map {
    padding-left: 0px;
    }
.contact-inn{
	padding-bottom: 0;
}
.iner-ab-b1{
	padding-bottom: 45px;
}
.contact-bx2{
	padding-top: 45px;
}


}


@media (min-width:576px) and (max-width:767px){

    .abtcound {
        left: 0;
        bottom: -125px;
    }
    .addres-bxs h3 {
		text-align: center;
	}
	.addres-bxs p {
		text-align: center;
	}
	.addres-bxs a{
		text-align: center;
	}
.baner-hed {
    padding-bottom: 0;
}
.click{
	display: none;
}

.logo {
    width: 50%;
 }

.hd-menus {
	 width: 50%;
}
.baner-hed h2{
	font-size: 45px;
	line-height: 60px;
}
.baner-hed h2 br{
	display: none;
}
.bnr-sidimg{
	display: none;
}
.stion2-hd h2 {
	font-size: 35px;
}
.stion-logo img{
	float: none;
	margin: auto;
	display: block;
	text-align: center;
}
.product-ind img{
	max-width: 100%;
}
.sertion-hd h2{
	font-size: 35px;
}
.sertion-hd h2 br{
	display: none;
}

.sertion-hd p {
	padding-left: 0;
	padding-right: 0;
}
.section3 {
	padding-top: 70px;
	
}
.section4-hd h2{
	font-size: 33px;
}
.colmain {
    width: 100%;
 }
.stion4-txt {
    width: 100%;
    padding-left: 0;
    padding-top: 12px;
 }
.section4-main img{
	float: none;
	margin: auto;
	display: block;
	text-align: center;
}
.stion4-txt h2{
	text-align: center;
}
.stion4-txt p{
	text-align: center;
}


    .colimg {
        margin-top: 0px;
        width: 100%;
        float: left;
        padding-bottom: 60px;
    }
.mhn img {
    width: 100%;
    float: none;
    margin: auto;
    display: block;
    text-align: center;
    max-width: 240px;
}
.section4-hd h2{
	padding-bottom: 40px;
}
.section4-main{
	padding-bottom: 40px !important;
}
.section4 {
	padding-bottom: 30px;
	padding-top: 60px;
    height: auto;
    background-image: url('../images/s4mob.jpg');
 }
.white-contant h3{
	text-align: center;
}
.white-contant h4{
	text-align: center;
	font-size: 35px;

}
.white-contant h4 br{
display: block;
}
.ftr-top {
    margin-top: 0;
 }
.white-contant{
	text-align: center;
}
.white-contant a{
	margin-left: auto;

}

.white-contant a {
    display: inline-block;
    float: none;
    text-align: center;
    margin-top: 22px;
 }
.flogo img{
	float: none;
	margin: auto;
	display: block;
	text-align: center;
}
.flogo p{
	text-align: center;
}
.ftr1 {
    width: 100%;
    float: left;
    padding-left: 0;
}
.ftr-main h3{
	padding-bottom: 16px;
    padding-top: 49px;
	text-align: center;
}
.ftr-main a{
	text-align: center;
}
.ftr1 li:after{
	display: none;
}
.ftr2 {
    width: 100%;
    float: left;
    padding-left: 0;
}
.ftr2 h6{
	text-align: center;
}

.ftr2 h6:after{
	display: none;
}
.ftr3 {
    width: 100%;
 }
.ftr3 p{
	text-align: center;
}
.social h6{
	text-align: center;
}
.downlode {
    display: flex;
    flex-direction: column;     /* Stack image and text vertically */
    align-items: center;        /* Center them horizontally */
    justify-content: center;    /* Center them vertically */
             /* Set a height for demo, adjust as needed */
    text-align: center;
}

.downlode img {
    max-width: 20px;            /* You can adjust icon size */
    margin-bottom: 10px;
}

.downlode a {
    text-align: center;
}
.social h6:after{
	display: none;
}



.social {
    width: 100%;
    text-align: center; /* centers inline elements */
}

.social h6 {
    text-align: center;
    margin-bottom: 10px;
}

.social a {
    display: inline-block; /* keep in line */
    margin: 0 10px; /* spacing between icons */
    float: none;
    padding-right: 0;
}

.social img {
    width: 36px;
    height: auto;
    display: block; /* removes gap under image */
}.copyriht h1{
	text-align: center;
	width: 100%;
}

.copyriht h2 {
    width: 100%;
    text-align: center;
 }
.inner-page h2 {
	    font-size: 35px;
	    padding-top: 132px;
}

.inner-page {
    padding-bottom: 60px;
 }
.abt-main img{
	float: none;
	margin: auto;
	display: block;
	text-align: center;
}

    .abt-main h3 {
        padding-top: 159px;
        float: left;
        text-align: center;
        width: 100%;
    }

.abt-main h2{
	text-align: center;
	float: left;
	width: 100%;
	font-size: 30px;
	line-height: 45px;
}
.abt-main p{
	width: 100%;
	float: left;
	text-align: center;
	padding-right: 0;

}
.vmall{
	padding-bottom: 30px;
	padding-top: 0;
}
.inn-about{
	padding-bottom: 60px;
}
.vmall-hd h2{
	text-align: center;
}
.vmall-hd p{
	padding-bottom: 30px;
	text-align: center;
}
.v-m{
	margin-bottom: 25px;
}

.v-m img{
	float: none;
	text-align: center;
	margin: auto;
	display: block;

}
.v-m h2{
	text-align: center;
}
.v-m p{
	text-align: center;
}
#sub-page-intro p{
	padding-left: 0;
	padding-right: 0;
}

.cpt-snd {
     padding-top: 0px;
    }

.addres-bxs{
	position: relative;
	width: 100%;
	top: 0;
}
.iner-ab-b1 h2{
	text-align: center;
	font-size: 35px;
}
.map {
    padding-left: 0px;
    }
.contact-inn{
	padding-bottom: 0;
}
.iner-ab-b1{
	padding-bottom: 45px;
}
.contact-bx2{
	padding-top: 45px;
}


}


@media (min-width:768px) and (max-width:991px){

.baner-hed {
    padding-bottom: 0;
}.ftr1 {
	padding-left: 0;
}
.click{
	display: none;
}
.bnr-sidimg{
	display: none;
}
.baner-hed h2{
	font-size: 55px;
}

.product-ind {
    width: 50%;
    padding: 0 10px;
}

.product-ind-mob{
	width: 100%;
}
.product-ind-mob img{
	max-width: 100%;
	height: 300px;
	object-fit: cover;


}

.section3 {
	padding-top: 60px;
	padding-bottom: 0;
}
.colmain {
    width: 36%;
 }
.section4-main img{
	max-width: 52px;
}
.mhn {
    margin-top: 75px;
 }
.section4{
	height: 872px;
}
.ftr-top {
    margin-top: -163px;
 }
.white-contant a{
	margin-left: 0;
	margin-top: 15px;
}
.copyriht h1{
	font-size: 13px;
}
.copyriht h2{
	font-size: 13px;
}

.inner-page {
    padding-bottom: 60px;
 }
.abt-main h3{
	float: left;
	padding-top: 30px;
	text-align: left;
	width: 100%;
}
.abt-main img{
	float: none;
	margin: auto;
	display: block;
	text-align: center;
}
.abt-img {
	width: 100%;
}
.abtcound{
	left: 20px;
}
.abt-main p{
	padding-right: 0;
}
.inn-about{
	padding-bottom: 0;
}
.inn-foot{
	margin-top: 0 !important;
}
.addres-bxs{
	width: 40%;
}
.iner-ab-b1 .cpt-snd{
padding-top: 0;
}
.contact-inn{
	padding-bottom: 0;
}



}

@media (min-width:992px) and (max-width:1024px){

.baner-hed {
    padding-bottom: 0;
}
.ftr1 {
	padding-left: 0;
}
.click{
	display: none;
}
.bnr-sidimg{
	display: none;
}
.baner-hed h2{
	font-size: 55px;
}

.stion4-txt {
    width: 84%;
 }

.section3 {
	padding-top: 60px;
	padding-bottom: 0;
}
.colmain {
    width: 36%;
 }
.section4-main img{
	max-width: 52px;
}
.mhn {
 margin-top: 30px;;
 }
.section4{
	height: 872px;
}
    .ftr-top {
        margin-top: -173px;
    }
    .white-contant h4 {
    width: 100%;
 }
.ftr1 li:after{
	display: none;
}
.ftr2 h6:after{
	display: none;
}
.social h6:after{
	display: none;
}
.ftr2 {
	padding-left: 15px;
}
.white-contant a{
	margin-left: 0;
	margin-top: 15px;
}
.copyriht h1{
	font-size: 13px;
}
.copyriht h2{
	font-size: 13px;
}

.inner-page {
    padding-bottom: 60px;
 }
 .abt-main h2{
 	font-size: 30px;
    line-height: 38px;
 }
.abt-main img{
	margin-top: 57px;
	max-width: 460px;
}
.abtcound{
	left: -8px;
}
.inn-about{
	padding-bottom: 0;
}
.inn-foot{
	margin-top: 0 !important;
}
.addres-bxs{
	width: 40%;
}
.iner-ab-b1 .cpt-snd{
padding-top: 0;
}
.contact-inn{
	padding-bottom: 0;
}

	
}
@media (min-width:1025px) and (max-width:1199px){
.ftr1 {
	padding-left: 0;
}
.click {
	display: none;
}
.logo {
    width: 40%;
 }
.hd-menus {
    width: 60%;
 }
.ftr2 {
	padding-left: 21px;
}
.ftr1 li:after{
	display: none;
}
.ftr2 h6:after{
	display: none;
}
.social h6:after{
	display: none;
}
.abt-main img {
    max-width: 436px;
    margin-top: 75px;
 }
.abt-main h2{
	font-size: 32px;
}











	
}



@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1198px;
    }


.section4 {
    height: 948px;
    }

}