::selection {
    background: #555;   
    color: #fff;
}
::-moz-selection {
    background: #555;    
    color: #fff;
}
body {
    background: #151515;
    padding: 0;
    margin: 0 auto;
    min-height: 100vh;
    font-family: 'Yantramanav', Arial, sans-serif;
    color: #222;
}

@media (min-width: 1200px){
.container {
    max-width: 1200px;
    width: 100%;
}
}

article,
aside,
details,
figcaption,
footer,
header,
hgroup,
nav,
section {
    display: block;
}
a {
    color:#de2a23;
    text-decoration: none;
	transition:color 0.3s; font-size:19px;
}
a:focus, a:hover{
	color:#df1f29; font-size:19px;
}
blockquote {
    padding: 10px 20px;
    color: #151515;
    font-size: 1.4em;
    font-style: italic;
    font-weight: 300;
    margin: 0 auto 30px;
}
ul {
    list-style-type: none;
    list-style: none;
    padding-left: 0 !important;
    -webkit-padding-start: initial !important;
    -moz-padding-start: initial;
}
menu,
ol,
ul {
    padding: 0 !important;
}
button {
    background: transparent;
    border: none;
}
button:focus {
    outline: none;
}
input,
textarea {
    font-family: 'Yantramanav', Arial;
}
textarea {
    padding: 14px;
}
input:focus,
textarea:focus {
    outline: none !important;
    border: 1px solid #df1f29;
    box-shadow: none;
}
input[type="submit"] {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
input[type="submit"]:focus {
    outline: none;
}
img {
    width: 100%;
}
figure {
    margin: 0;
}
/* 1.1 Typography */

h1,
h2,
h4,
h5,
h6 {
    color: #151515;
    margin-top: 0;
    text-transform: uppercase;
}
h1 {
    font-size: calc(80px + 1vw);
}

p {
    font-size: calc(18px + 2 * (100vw - 992px) / 1508);
    line-height: 1.58em;
    font-weight: 300;
    margin: 0 0 15px;
}

/* 1.2 Specials Classes */

.c-white {
    color: #fff !important;
}
.navbar-white {
    color: #fff;
    background-color: transparent !important;
}
.center-block {
    display: flex;
    justify-content: center;
}
.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
.align-center {
    text-align: center;
    display: block;
}
.socials li {
    display: inline-block;
}
.share-links a {
    font-size: 19px;
    padding: .5em;
}
[class*="socicon-"] {
  display: inline-block;
  color: inherit;
  margin: 0;
  transition: opacity .3s ease;
}
#contact [class*="socicon-"] {
  padding-right: .7em;
}
[class*="socicon-"]:hover {
  opacity: .4;
}
/* 1.3 Button */

.ms-button {
  color: #151515;
  display: inline-block;
  position: relative;
  padding: .5em 1em;
  margin-bottom: 0;
  font-weight: 400 !important;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  text-decoration: none;
  border: solid 1px;
  transition: color .4s ease;
}
.ms-button:after {
    position: absolute;
    display: block;
    content: attr(data-title);
    padding: 7px 0;
    font-size: 14px;
    left: 0;
    top: 0;
    width: 0%;
    background: #df1f29;
    color: #fff;
    text-indent: 1rem;
    transition: all .3s ease;
    overflow: hidden;
    border: none;
    bottom: 0;
}
.ms-button:hover {
  color: #df1f29;
}
.ms-button:active::after,
.ms-button:focus::after,
.ms-button:hover::after {
    width: 100%;
    padding-right: 25px;
}

.ms-btn--slider {
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: .15em;
      width: 45%;
      color: #df1f29;
}
.ms-btn--slider::before{
    content: '';
    height: .1rem;
    width: 2rem;
    margin-right: .7rem;
    background: #df1f29;
    transition: width .3s ease;
}
.ms-btn--slider:hover::before {
  width: 3rem;
}
.ms-btn--slider:hover{
    	color: #df1f29;
    }
/**
 * 2. Header
 */

.ms-header {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 3;
	    transition: all 0.3s;
}
/* 2.1 Menu */

.ms-logo {
    position: relative;
    z-index: 1;
    height: 50px;
}
.logo-dark,
.logo-light {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease .4s;
}
.ms-logo img {
    width: auto;
    height: 100%;
}
.logo-dark.current,
.logo-light.current {
    opacity: 1;
}
.logo-dark.active,
.logo-light.active {
    opacity: 1;
    transition: opacity .1s;
}
.ms-nav {
    padding: 1em 3em;
    color: inherit;
}

/* 2.2 Burger button */

.hamburger {
	    width: 44px;
    height: 44px;
    margin-right: 0;
    margin-left: auto;
    overflow: visible;
    cursor: pointer;
    z-index: 7;
    border: 0;
    transition-timing-function: linear;
    transition-duration: .3s ease;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
	position:relative;
}
.hamburger:before {
    position: absolute;
    width: 44px;
    height: 44px;
    border:2px solid #df1f29;
    border-radius:50%;
    content:'';
    left: -3px;
    top: -7px;
}
.navbar-white .hamburger-label {
    color: #df1f29;
}
.hamburger-label {
    display: block;
    font-family: 'Yantramanav', Arial;
    font-size: 16px;
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: -4em;
    padding-right: 4em;
    text-transform: uppercase;
    line-height: 1.5em;
    transition: color .3s ease .4s;
    color: #151515;
    display: none;
}
.hamburger.is-active .hamburger-label {
    color: #df1f29 !important;
    transition: color .1s ease;
}
.hamburger-box {
     position: absolute;
    display: inline-block;
    width: 30px;
    height: 20px;
    vertical-align: middle;
    top: 5px;
    left: 5px;
}
.hamburger-inner {
    display: block;
    top: 0;
}
.navbar-white .hamburger-inner,
.navbar-white .hamburger-inner:after,
.navbar-white .hamburger-inner:before {
    background-color: #df1f29;
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: '';
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    position: absolute;
    width: 27px;
    height: 3px;
    background-color: #151515;
    transition: all .3s ease .5s;
}
.hamburger-inner:before {
    top: 8px;
    left: 0;
}
.hamburger-inner:after {
    top: 16px;
    width: 27px;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after {
    background-color:#df1f29;
    transition-delay: .1s;
}
.hamburger.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger.is-active .hamburger-inner:before {
    opacity: 0;
    transition: opacity .3s ease 0s
}
.hamburger.is-active .hamburger-inner:after {
    width: 30px;
    -webkit-transform: translate3d(0, -16px, 0) rotate(-90deg);
    transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/* 2.3 Collapse navigation */

.ms-nav {
    display: flex;
    align-items: center;
}
.height-full-viewport {
    position: fixed;
	display:flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    right: 0;
    top: 0;
    width: 32%;
    height: 0%;
    background-color: #151515;
    z-index: 5;
    /* overflow: hidden; */
    transition: height .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
   
}
.ms-navbar {
    z-index: 6;
    margin: 0 auto;
    display: block;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    padding: 25px 0px !important;
}
.ms-nav.is-visible .height-full-viewport {
    height: 100vh;
    transition: height 1s ease;
}
.nav-item {
    cursor: pointer;
    padding: .75em;
    opacity: 0;
    width: 360px;
    margin-left: 3em;
    transition: opacity .3s ease;
}
.ms-navbar a {
    display: block;
    text-decoration: none;
}
.ms-navbar .ms-btn {
    display: inline-block;
    text-transform: uppercase;
    line-height: 1;
    padding: 0 0.25em;
    position: relative;
}
.ms-navbar .ms-btn {
    font-size:22px;
    letter-spacing: .02em;
    color: #fff;
    font-weight: 700 !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.ms-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #df1f29;
    height: .1rem;
    top: 50%;
    width: 0;
    transition: width .3s ease;
}
.nav-item__label {
    position: relative;
    display: block;
    margin: 0;
    padding:0 0.5em;
    color: #555;
    transition: color .3s ease;
    text-decoration: none;
}
.nav-item:hover .nav-item__label {
    color: #9a9a9a;
}
.is-visible .nav-item {
    opacity: 1;
    transition: opacity 2s cubic-bezier(0.16, 1.08, 0.38, 0.98) .3s;
}
.nav-item .ms-btn {
    transition: all .3s ease;
}
.nav-item:active .ms-btn,
.nav-item:focus .ms-btn,
.nav-item:hover .ms-btn {
    color: #df1f29;
    opacity: 1;
    padding-left: 2.4rem;
}
.nav-item:active .ms-btn::before,
.nav-item:focus .ms-btn::before,
.nav-item:hover .ms-btn::before {
    width: 2rem;
}

/**
 * 3. Pages Style
 */

.ms-preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 8;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    background-color: #151515;
}
.ms-main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    background-color: #fff;
}
.ms-container {
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: 12em;
}
.ms-section__block {
    width: 85%;
    max-width: 88em;
    margin: 0 auto 6em;
}
.ms-page-title span {
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #df1f29;
}
.page-header {
    text-transform: uppercase;
    position: relative;
    margin: 15px 0;
}
.page-desc {
    width: 50vh;
    font-size: 1.5em;
    line-height: 1.5;
    color: #151515;
    letter-spacing: .05em;
}

/**
 * 4. Home Slider
 */

.home-slider {
    padding-top: 0 !important;
}
.swiper-container {
    width: 100%;
    height: 100vh;
}
.swiper-slide {
    overflow: hidden;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    background: -moz-linear-gradient(top, black 0, transparent 50%, transparent 63%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(top, black 0, transparent 50%, transparent 63%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, black 0, transparent 50%, transparent 63%, rgba(0, 0, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#c9000000', GradientType=0);
    transition: all .65s ease;
    pointer-events: none;
}
.swiper-slide-duplicate-active .overlay,
.swiper-slide-active .overlay {
    opacity: .4;
}
.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.slide-inner--image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: .2;
    transform: scale(1.07);
    -webkit-transition: opacity .6s ease-in-out, transform 2s ease .7s;
    -moz-transition: opacity .6s ease-in-out, transform 2s ease .7s;
    transition: opacity .6s ease-in-out, transform 2s ease .7s;
}
.swiper-slide-duplicate-active .slide-inner--image,
.swiper-slide-active .slide-inner--image {
    opacity: 1;
    transform: scale(1);
}

/* 4.1 Slider navigation buttons */

.swiper-button-prev,
.swiper-button-next,
.next_btn,
.prev_btn {
	    position: absolute;
	    top: 50%;
	    width: 27px;
	    height: 44px;
	    margin-top: -22px;
	    z-index: 1;
	    cursor: pointer;
	    -moz-background-size: 27px 44px;
	    -webkit-background-size: 27px 44px;
	    background-size: 27px 44px;
	    background-position: center;
	    background-repeat: no-repeat;
	    text-transform: uppercase;
	    color:#de2a23;
	    letter-spacing: .2em;
	    line-height: 2em;
	    font-size: 12px;
	    width: auto;
	    height: 24px;
	    background-image: none !important;
	    -webkit-backface-visibility: hidden;
	    backface-visibility: hidden;
}
.swiper-button-prev,
.prev_btn {
    padding-left: 4em;
    left: 0;
    -webkit-transition: padding-left .3s ease;
    -moz-transition: padding-left .3s ease;
    transition: padding-left .3s ease;
}
.swiper-button-next,
.next_btn {
    padding-right: 4em;
    right: 0;
    -webkit-transition: padding-right .3s ease;
    -moz-transition: padding-right .3s ease;
    transition: padding-right .3s ease;
}
.swiper-button-prev::after,
.prev_btn::after {
    content: "";
    width: 3em;
    height: 1px;
    background-color:#de2a23;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease;
}
.swiper-button-next::after,
.next_btn::after {
    content: "";
    width: 3em;
    height: 1px;
    background-color:#de2a23;
    position: absolute;
    right: 0;
    top: calc(50% - 1px);
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease;
}
.swiper-button-prev:hover,
.prev_btn:hover
 {
    padding-left: 5em;
}
.swiper-button-prev:hover::after,
.prev_btn:hover:after {
    width: 4em;
}
.swiper-button-next:hover,
.next_btn:hover {
    padding-right: 5em;
}
.swiper-button-next:hover::after,
.next_btn:hover:after {
    width: 4em;
}

/* 4.2 Slider inner info */

.slide-inner--info {
    position: absolute;
    width: auto;
    /* min-height: 50px; */
    bottom: 138px;
    padding-left: 3em;
    color: #fff;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.swiper-slide-active .slide-inner--info {
    opacity: 1;
    transition: opacity 1s ease 1s;
}
.slide-inner--info h1 {
    margin: 10px 0;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1em;
    color: #fff;
}
.slide--info__link {
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-bottom: solid 2px;
}
.swiper-slide--bottom {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* 4.3 Pagination */

.expanded-timeline {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    z-index: 3;
    bottom: 2.8em;
    right: 3em;
    width: 40vh;
}
.swiper-pagination {
    z-index: 4;
    width: 85%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, .5);
}
.swiper-pagination-progressbar-fill {
    background: #fff !important;
}
.expanded-timeline__counter span {
    text-align: center;
    margin-left: 1.8em;
    margin-right: 100%;
    padding: .4em 0;
    color: #fff;
    display: block;
}
.scroll-message {
    position: absolute;
    right: 0;
    color: #fff;
    opacity: .5;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    letter-spacing: .15em;
}
.scroll-svg {
    width: 24px;
    margin: 0 auto 1.2em;
    display: block;
}
.home-slider .swiper-pagination,
.owl-dots{
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: transparent;
}

.home-slider .swiper-pagination .swiper-pagination-bullet,
.owl-dot {
    width: 10px;
    height: 10px;
        background:#fff;
        opacity: 1;
		font-size:0;
		transform:scale(1);
		transition:all 0.3s;
		margin:0 4px;
		border-radius:50%;
   }
.home-slider .swiper-pagination .swiper-pagination-bullet:hover,
.home-slider .swiper-pagination  .swiper-pagination-bullet-active,
.owl-dot:hover,
.owl-dot .active{
	transform:scale(1.3);
}

/* Products_Section */

.product_section{
	padding: 100px 0px;
}
.product_bg{
	background: #fff;
	background-size: cover;
	height: 100vh;
}

.sec_heading{
	text-align: center;
	padding-bottom: 48px;
}
.sec_heading h2{
	display: inline-block;
	border-bottom: 3px solid #b45231; font-size:34px; padding:0px 10px;
}

.col4-inner{box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 13px 2px;border-radius: 10px; padding:20px 10px; background: #fff; }
.col4-inner h4 {
    margin-top: 10px;
    color:#de2a23;
    text-transform: capitalize;
}
.col4-inner img {
    max-width: 100%;
    max-height: 100%;
}
.col4-inner p {
    font-size: 16px;
    text-align: justify;
        font-family: 'Roboto', sans-serif;
        margin: 0px; margin-top:10px;
}
.read-more {
    text-align:right;
    margin-top: 10px;
}

/* NewsFeed_Section */
.news_home{
	padding: 75px 0px 49px;
	background: url(../images/bg_1.jpg) no-repeat 0 0;
	background-size:cover;
	height: 100vh;
	margin-bottom: -250px;
}
.col4-inner2 {
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.22) 0px 0px 5px;
    border-radius: 10px;
    padding: 10px;
        background: #fff;
}
.col4-inner2 h4{
	margin-top: 10px;
    color: #de2a23;
}
.col4-inner2 p {
    font-size: 14px;
    margin: 0px;
    text-align: justify;
}

/* Footer */

.footer {
    background-image: url(../images/footer-img.png);
    background-repeat: repeat;
    padding-top: 30px;
}
.our_address h4{
	font-size: 20px;
	color: #de2a23;
}
.our_address span{
	font-size: 13px;
	color: #fff;
	text-transform: uppercase;
}
.social-icon1 {
    margin-top: 10px;
}
.social-icon1 ul li {
    list-style: none;
    display: inline-block;
    text-align: center;
}
.social-icon1 ul li a {
    list-style: none;
    color: #fff;
    font-size:15px;
    line-height:35px;
    display: block;
    padding:0 5px;
    background-color: #000;
    border-radius: 50%;
    border: #000 solid 2px;
    width:35px;
    height:35px;
}
.ff .social-icon1 ul li a{
	width: 25px;
min-height: 35px;
min-width: 25px;
max-height: 35px;
}
.footer-col3 ul li a:hover {
    list-style: none;
    color: #de2a23;
    margin-bottom: 5px;
    padding-bottom: 5px;
}
.lower-footer{
    background: #000;
    margin-top: 15px;
    padding: 6px 0px 3px;
}
.copy_right p, .development p{
	margin: 0px;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;	
}
.development p a{
	color: #fff;
	text-decoration:none;
}
.development p a:hover{
	color: #de2a23;
}
.development p{
	text-align: right;
}


/*ash new start*/
.break-img {position:relative;}
.break-img:hover .asoverlay {height:60%; -webkit-transform:rotate(360deg); transition:2.2s;}
.asoverlay {
  position: absolute;
  bottom: 0;
  left: 0; text-align: center; color:#fff;
  right: 0;
  background:#5c5c5c; background-color: transparent; font-size:30px;
  overflow: hidden;
  width: 100%;
  height:0; 
  transition:0.5s ease;}
.break-img h4 {color:#fff; font-size:18px; position:absolute; top:0; margin-left:10px; text-align: center; margin-top:10px;}
.break-img:hover h4 {display:none;}
.steel-hedd {color:#000000; padding-bottom:4px; text-transform:none; font-size:32px; line-height:42px; background:url("../images/border-bottom.jpg") bottom left no-repeat;}
.mi-4, h2 {color:#000000; text-align:center; margin:10px 0px; font-size:22px; text-transform:none;}
.about-txt {color:#000; font-size:34px; margin:15px 0px; font-weight:600;}
.about-txt span {border-bottom:#de2a23 solid 2px; padding:0px 10px; margin:10px 0px;}
.read-more-target {font-size:0; transition:0.5s;}
.read-more-state:checked ~ .read-more-wrap .read-more-target {font-size:20px;}
.read-more-state ~ .read-more-trigger:before {content:'see more...';}
.read-more-state:checked ~ .read-more-trigger:before {content:'see less...';}
.read-more-state {display:none;}
.read-more-trigger {cursor:pointer; color:#f44b27; float:right; font-size:22px;}
.read-more-wrap {font-size:20px; color:#000000;}
.bottom-bg {background:#e6e6e6;}
.bottom-bg h1 {color:#000; font-size:38px; margin:30px 0px; text-align:center;}
.bol-blk {background:#000000; padding:10px 15px; margin-bottom:15px;}
.bol-blk h2 {color:#fff; font-size:26px; text-align:inherit; margin:0px;}
.bottom-bg ul {margin-left:15px; padding:0px; font-size:21px; line-height:32px;}
.bottom-bg ul li {list-style:none;}
.hding-nam {font-size:34px; color:#000; margin-bottom:30px; text-align:center;}
.hding-nam span {border-bottom:#de2a23 solid 2px; padding:0px 8px;}


/*ash new end*/

@media (min-width:768px){
	.slider_box{
	/* width:100vh; */
	height:100vh;
	display: flex;
}
.owl-stage,.slide_items,
.slide_items img{
	height:100vh;
	object-fit:cover;
}
.slide-inner1 .col-md-6 {
    -ms-flex: 0 0 45.5%;
    flex: 0 0 45.5%;
    max-width: 45.5%;
}
.slide-inner1 .col-md-5{
	-ms-flex: 0 0 34%;
	flex: 0 0 34%;
	max-width: 34%;
}
.slide-inner1 footer .col-md-4 {
    -ms-flex: 0 0 26%;
    flex: 0 0 26%;
    max-width: 26%;
}
}
@media (min-width: 992px){
.slide-inner1 .col-xl-3 {
    -ms-flex: 0 0 22.5%;
    flex: 0 0 22.5%;
    max-width: 22.5%;
}
.slide-inner1 footer .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 31.333333%;
    max-width: 31.333333%;
}
}
@media (min-width:768px) and (max-width:1199px){
.news_home{
	padding: 60px 0 30px;
}
.col4-inner, .col4-inner2 {
    margin-bottom: 30px;
}
}
@media (max-width:767px){
	.overlay{
		display:none;
	}
	.slide-inner--info{
		opacity: 1 !important;
	}
	.slide_items img{
		height:500px;
		object-fit:cover;
	}
	.ms-container.home-slider,
	.product_bg{
		height:auto;
	}
	.slide-inner,.swiper-container{
		position:static;
		height: auto;
		overflow: visible;
		transform: translate3d(0px, 0px, 0px) !important;
	}
	.swiper-wrapper{
		display: block;
		height: auto;
	}
	.swiper-slide{
		overflow: visible;
		height: auto;
		flex-shrink: initial;
		display: block;
	}
	
/*ash new start*/
.steel-hedd {color:#000000; padding-bottom:4px; text-transform:none; font-size:22px; line-height:42px;  background:url("../images/border-bottom.jpg") bottom left no-repeat; margin-bottom:30px;}
.read-more-trigger {cursor:pointer; color:#f44b27; float:right; font-size:22px;}
.sec_heading h2 {font-size:24px;}
	
/*ash new end*/
	
}

/* INNER_BANNE */
.inner_banner{
	position: relative;
}
.inner_banner .slide-inner--info{
	opacity: 1;
}
/* ABOUT_US */
.about_bg{
	background-image: url(../images/banner2.jpg);     
}
.banner_column{
	min-height: 432px;
	width: 100%;
	background-repeat: no-repeat !important;
    background-position: 0 0 !important;
    background-size:cover !important;
}
.about_column{
	padding-top: 70px;
}
.about_round{
	    display: flex;
	    margin-bottom:35px;
}
.left_picture{
    width: 404px;
}
.left_picture figure{
	width: 100%;
}
.left_picture img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_text{
    width: calc(100% - 404px);
    padding: 25px 32px 25px 25px;
    border: 1px solid #5f5d5f;  
    
    box-shadow: 0px 3px 0px 0px #a6a6a6;
}
.bl_none{
	  border-left: none;
	  border-radius: 0px 10px 10px 0px;
}
.br_none{
	border-right: none;
	border-radius: 10px 0px 0px 10px;
}
.top_text h2{
	text-transform: capitalize;
	    display: inline-block;
    border-bottom: 3px solid #e54813;
}
.order2{
	    order: 2;
}

/* MANUFACTURING-FACILITIES_PAGE */
.manufacturing_text{
	text-align: center;
}
.manufacturing_text h2{
	text-transform: capitalize;
	border-bottom: 3px solid #e54813;
	display: inline-block;
	padding-bottom: 20px;
	margin-bottom: 110px;
}


/* PRESTIGIOUS_CUSTOMERS_PAGE */
.customers_sec{
	padding: 60px 0px;
}
.customer_head{
	text-align: center;
	margin-bottom: 70px;
}
.customer_head h2{
	text-transform: capitalize;
	border-bottom: 3px solid #e54813;
	display: inline-block;
	padding-bottom: 26px;
	margin: 0px;
}
.customer_logo{
	border: 1px solid #e54813;
	margin-top: 20px;
}



/* strategic-patners */
.strategic_bg{
	background: url(../images/bg_3.jpg);
	min-height: 569px;
}


/* QUALITY_PAGE */
.quality_ban{
	background: url(../images/bg_4.jpg);
}
.quality_text{
	padding: 80px 0px 90px;
}
.focus_quality{
	    box-shadow: rgba(0, 0, 0, 0.22) 0px 0px 5px;
	    border-radius: 10px;
	    padding: 20px 20px 20px 20px;
}
.focus_first h2, .small_heading h3{
	display: inline-block;
	    text-transform: capitalize;
    border-bottom: 3px solid #e54813;
    margin: 0px;
}
.small_heading{
	max-width: 340px;
	margin-top: 25px;
	    margin-bottom: 10px;	
}
.bold_text{
	font-weight: bold;
	font-size: 20px;
}
.small_heading .text_upper{
	text-transform: uppercase;
}


/* GALLERY_PAGE */
.gallery_full{
	padding: 60px 0px;
}
.heading_gallery{
	margin-bottom: 40px;	
}
.heading_gallery h2{
	display: inline-block;
	margin: 0px;
	padding-bottom: 15px;
	    border-bottom: 3px solid #e54813;
}

.container-filter {
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	margin-bottom:50px;
	padding: 0;
	text-align: center;
}

.container-filter li {
	list-style: none;
	display: inline-block;
	margin-bottom: 10px;
}

.container-filter li a {
	display: block;
    margin-left: 5px;
    margin-right: 5px;
    padding: 0 10px;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.container-filter li a.active,
.container-filter li a:hover {	
	       color: #ffffff !important;
    background: #e54813;
    border-radius: 5px;
}

.item-box {
	position: relative;
	overflow: hidden;
	display: block;
}

.item-box a {
	display:inline-block;
}

.item-box:hover .item-mask {
	opacity: 1;
	visibility: visible;
}

.item-box:hover .item-mask .item-caption, .item-box:hover .item-mask .link {
	bottom: 30px;
	opacity: 1;
}
.item-box:hover .item-mask .link {
	bottom: 107px;
}
.item-box:hover .item-container {
	transform: scale(1.1);
	transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	width: 100%;
}

.item-container {
	transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	width: 100%;
	transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.item-box {
	position: relative;
	overflow: hidden;
	display: block;
}
.item-box img{
	width: 100%;
}
.item-box:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.85);
	opacity: 0;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
}
.item-box:hover:after {
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	opacity: 1;
}


.item-box:hover .gallery-heading {
	bottom: 11px;
	transition: all 0.3s linear 0.1s;
	-webkit-transition: all 0.3s linear 0.1s;
}
.link-zoom {
	transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	height: 40px;
	position: absolute;
	top: 55%;
	left: 50%;
	color: #fff;
	z-index: 1;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	opacity: 0;
}
.item-box:hover .link-zoom {
	top: 50%;
	opacity: 1;
	transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
}
.link-zoom a {
	width:60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background: #fff;
	font-size:25px;
	color: #000;
	border-radius: 50%;
}
.link-zoom a.project_links {
	background: #19b5fe;
}
.item-box a {
	display: inline-block;
}

.item-box:hover .item-mask {
	opacity: 1;
	visibility: visible;
}

.item-box:hover .item-mask .item-caption, .item-box:hover .item-mask .link {
	bottom: 30px;
	opacity: 1;
}
.item-box:hover .item-mask .link {
	bottom: 107px;
}
.item-box:hover .item-container {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	width: 100%;
}

.item-container {
	transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	width: 100%;
	transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	width: 100%;
}
.item-box>a{
	display: block;
}
.nf-col-5 .text_categorie{
	background: #e54813;
	    width: 60% !important;
}
.nf-col-5 .text_bigger{
	font-size: 48px;
	color: #fff;
	line-height: 1;
	margin: 0px;
}
.nf-col-5 .text_categorie .item-box{
	    padding: 20px 85px 20px 50px;
	        min-height: 241px;
}
.nf-col-5 .text_categorie .item-box:hover:after{
	display: none;
}
.container.nf-container1 {
	padding-left: 15px;
	padding-right: 15px;
}

.nf-row1 {
	margin-left: -15px;
	margin-right: -15px;

}

.nf-col-padding {
	padding-left: 25px;
	padding-right: 25px;
}


.nf-row1:before, .nf-row1:after, .nf-row2:before, .nf-row2:after {
	display: table;
	content: " ";
}

.nf-row1:after, .nf-row2:after {
	clear: both;
}

.nf-row1 .nf-item.spacing, .nf-row1 .grid-sizer.spacing {
	padding: 15px;
}

.nf-row2 .nf-item.spacing, .nf-item.spacing, .nf-row2 .grid-sizer.spacing, .spacing-box {
	padding: 10px;
}

.spacing-grid {
	padding-top: 25px;
	padding-bottom: 25px;
}

.nf-col-1 .nf-item, .nf-col-1 .grid-sizer {
	width: 100%;
	min-height: 1px;
}

.nf-col-2 .nf-item, .nf-col-2 .grid-sizer {
	width: 50%;
	min-height: 1px;
}

.nf-col-3 .nf-item, .nf-col-3 .grid-sizer {
	width: 33.3333%;
	min-height: 1px;
}

.nf-col-4 .nf-item, .nf-col-4 .grid-sizer {
	width: 25%;
	min-height: 1px;
}
.nf-col-4 .w2x {
    width: 50%;
}
.nf-col-5 .nf-item, .nf-col-5 .grid-sizer {
	width: 20%;
	min-height: 1px;
}

.nf-col-6 .nf-item, .nf-col-6 .grid-sizer {
	width: 16.6666%;
	min-height: 1px;
}

.nf-col-1 .nf-item.w1, .nf-col-2 .nf-item.w1, .nf-col-3 .nf-item.w1, .nf-col-4 .nf-item.w1 {
	width: 100%;
}

.nf-col-1 .nf-item.w2, .nf-col-2 .nf-item.w2, .nf-col-3 .nf-item.w2, .nf-col-4 .nf-item.w2 {
	width: 50%;
}

.nf-col-1 .nf-item.w3, .nf-col-2 .nf-item.w3, .nf-col-3 .nf-item.w3, .nf-col-4 .nf-item.w3 {
	width: 33.3333%;
}

.nf-col-1 .nf-item.w4, .nf-col-2 .nf-item.w4, .nf-col-3 .nf-item.w4, .nf-col-4 .nf-item.w4 {
	width: 25%;
}

.nf-col-1 .nf-item.w4-2, .nf-col-2 .nf-item.w4-2, .nf-col-3 .nf-item.w4-2, .nf-col-4 .nf-item.w4-2, .nf-col-1 .nf-item.w3-2, .nf-col-2 .nf-item.w3-2, .nf-col-3 .nf-item.w3-2, .nf-col-4 .nf-item.w3-2 {
	width: 50%;
}

.nf-col-1 .nf-item.w4-1, .nf-col-2 .nf-item.w4-1, .nf-col-3 .nf-item.w4-1, .nf-col-4 .nf-item.w4-1 {
	width: 75%;
}

.nf-col-1 .nf-item.w3-1, .nf-col-2 .nf-item.w3-1, .nf-col-3 .nf-item.w3-1, .nf-col-4 .nf-item.w3-1 {
	width: 66.6666%;
}

@media (max-width: 991px) {
	.nf-col-2 .nf-item, .nf-col-3 .nf-item, .nf-col-4 .nf-item, .nf-col-1 .nf-item.w2, .nf-col-2 .nf-item.w2, .nf-col-3 .nf-item.w2, .nf-col-4 .nf-item.w2, .nf-col-1 .nf-item.w3, .nf-col-2 .nf-item.w3, .nf-col-3 .nf-item.w3, .nf-col-4 .nf-item.w3, nf-col-1 .nf-item.w4, .nf-col-2 .nf-item.w4, .nf-col-3 .nf-item.w4, .nf-col-4 .nf-item.w4, .nf-col-1 .nf-item.w4-1, .nf-col-2 .nf-item.w4-1, .nf-col-3 .nf-item.w4-1, .nf-col-4 .nf-item.w4-1, .nf-col-1 .nf-item.w3-1, .nf-col-2 .nf-item.w3-1, .nf-col-3 .nf-item.w3-1, .nf-col-4 .nf-item.w3-1 {
		width: 50%;
	}

	.nf-col-5 .nf-item, .nf-col-6 .nf-item {
		width: 33.3333%;
	}

	.nf-row2 .nf-item.spacing, .nf-row2 .grid-sizer.spacing {
		padding: 25px;
	}
}

@media (max-width: 767px) {

	.container {
		margin: 0 auto;
		max-width: 480px;
		width: 100%;
	}

	.nf-col-padding {
		padding-left: 15px;
		padding-right: 15px;
	}

	.spacing-grid {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.nf-col-2 .nf-item, .nf-col-3 .nf-item, .nf-col-4 .nf-item, .nf-col-1 .nf-item.w2, .nf-col-2 .nf-item.w2, .nf-col-3 .nf-item.w2, .nf-col-4 .nf-item.w2, .nf-col-1 .nf-item.w3, .nf-col-2 .nf-item.w3, .nf-col-3 .nf-item.w3, .nf-col-4 .nf-item.w3, nf-col-1 .nf-item.w4, .nf-col-2 .nf-item.w4, .nf-col-3 .nf-item.w4, .nf-col-4 .nf-item.w4, .nf-col-1 .nf-item.w4-1, .nf-col-2 .nf-item.w4-1, .nf-col-3 .nf-item.w4-1, .nf-col-4 .nf-item.w4-1, .nf-col-1 .nf-item.w3-1, .nf-col-2 .nf-item.w3-1, .nf-col-3 .nf-item.w3-1, .nf-col-4 .nf-item.w3-1 {
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}

	.nf-col-3, .nf-col-4 {
		margin: 0 auto;
		max-width: 480px;
	}

	.nf-col-5 .nf-item, .nf-col-6 .nf-item {
		width: 100%;
	}

	.nf-row2 .nf-item.spacing, .nf-row1 .nf-item.spacing, .spacing-box {
		padding: 15px;
	}

	body .xs-hidden {
		visibility: hidden;
		display: none;
		opacity: 0;
	}
}

@media (max-width: 480px) {

	.nf-col-5 .nf-item, .nf-col-6 .nf-item {
		width: 100%;
	}
}


/* CONTACT_US_PAGE */
.contact_banner{
	background: url(../images/bg_5.jpg);
}
.get_contact{
	padding:70px 0px;
}
.get_contact .heading_gallery{
	margin-bottom: 0px;
}
.get_contact .heading_gallery h2, .know_heading h2{
	text-transform: capitalize;	
}
.contact_info, .contact_filed{
	margin-top: 120px;
}
.know_heading h2{
	color: #f15a25;
}
.know_heading{
	display: inline-block;
}
.know_heading span{
	    border-bottom: 3px solid #e54813;
}
.our_location{
	margin:42px 0px 50px 0px;
}
.our_location li{
	    overflow: hidden;
    margin-bottom: 35px;
}
.our_location li:last-child{
	margin: 0px;
}
.our_location .left_icon{
	    float: left;
    display: inline-block;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 30px;
    border-radius: 50%;
    color: #f15a25;
    border: 2px solid #f15a25;
    margin-right:35px;
}
.our_location .get_info{
	    width: calc(100% - 100px);
}
.our_location .get_info a{
	color: #151515;
}
.our_location .get_info a:hover{
	color: #f15a25;
}
.follow_icon{
	margin: 42px 0px 0px;
}
.follow_icon li{
	display: inline-block;
	margin-right: 10px;
}
.follow_icon a{
	color: #fff;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	line-height: 50px;
	font-size: 20px;
	display: inline-block;
	text-align: center;
}
.follow_icon a.facebook{
	background: #3c5996;
}
.follow_icon a.twitter{
	background: #5ca9dd;
}
.follow_icon a.linkedin{
	background: #0077b5;
}

.contact_filed .know_heading p{
	line-height:1.2;
	margin:10px 0px 20px;
}
.form-control{
	color: #a4a4a4;
	border: none;
	border-bottom: 2px solid #a4a4a4;
	border-radius: 0px;
	height: 40px;
}
textarea.form-control{
	height: 80px;
}
.btn_submit{
	height: 40px;
	min-width: 120px;
	border: 1px solid #f15822;
	color: #f15822;
	cursor: pointer;
}
#map{
	height: 665px;
	width: 100%;
}

/* HISTORY_PAGE */
.history_banner{
	    background: url(../images/bg_6.jpg);
}
.history_skills{
	padding: 70px 0px;
}
.history_heading{
	margin-bottom: 100px;
}
.history_heading h2{
	display: inline-block;
	    border-bottom: 3px solid #e54813;
	    text-transform: capitalize;
	    padding-bottom: 15px;
}

/* TECHNOLOGY_PAGE */
.widthfull{
	width: 100%;
}
.technology_space{
	    background: #fff;
}
.technology_space .focus_first h2{
	margin-bottom: 40px;
	padding-bottom: 10px;
}
.technology_space .focus_quality{
	padding: 60px 20px 20px 20px;
}

.next_btn, .prev_btn{
	position:fixed;
}
.slide_items{
	background:#000;
}
.slide_items img{
	opacity:0.8
}