@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto+Condensed');

body {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0;
	padding: 0;
}

ul, ul li, p, a {
	margin: 0;
	padding: 0;
}

p {
    font-family: 'Raleway', sans-serif;
    margin: 0;
	padding: 0;
    line-height: 1.7;
    color: #292929;
    opacity: 1;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

a {
	margin: 0;
	padding: 0;
	text-decoration: none;
	transition: 0.5s all ease-in-out;
}
a:hover {
	color: #0094d3;
	text-decoration: none;
	transition: 0.5s all ease-in-out;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

h1.main-head {
    font-size: 30px;
    font-weight: 400;
}
h2.main-head {
    font-size: 27px;
    font-weight: 400;
}
h3.main-head {
    font-size: 24px;
    font-weight: 400;
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible;
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible;
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible;
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

/*== header ==*/
.header {
	margin-top: 20px;
}
.header, .logo {
	position: relative;
}
.logo img {
	width: 120px;
}
.logo img,
.logo h1 {
	display: inline-block;
}
.logo a {
	color: #0094d3;
	font-weight: bold;
}
.logo h1 {
    font-weight: bold;
    position: relative;
    top: 35px;
    margin-left: 15px;
}
.logo h1 span {
    color: #000000;
    font-weight: bold;
}

.header-top-right p {
	position: relative;
	font-size: 15px;
}
.header-top-right span {
	font-weight: bold;
	color: #0094d3;
	font-size: 20px;
}

/*== menu ==*/
.menu {
	margin-top: 20px;
}

#cssmenu {
    background: #2b2a27;
    border-bottom: 5px solid #0094d3;
}
#cssmenu ul ul {
    position: absolute;
    left: -9999px;
    z-index: 99999999;
}
.inquiry-info {
	position: relative;
	overflow: visible;

	background: #0094d3;
}
.inquiry-info:before {
	position: absolute;
	content: "";
	display: block;
	height: 100%;
	width: 50px;
	top: 0;
	left: -10px;
	background: #0094d3;
	transform: skew(-20deg);
}

/*== slider ==*/
.slider {
	position: relative;
	
}
#main-slider {
	z-index: 9999999;
	overflow: hidden;
	position: relative;
}
#main-slider .owl-dots {
	display: none;
}
#main-slider.owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    width: 100%;
    top: 38%;
}
#main-slider.owl-theme .owl-nav .owl-prev {
    background: #0094d3;
    color: #fff;
    padding: 10px 12px 10px 10px;
    border-radius: 0;
}
#main-slider.owl-theme .owl-nav .owl-next {
    background: #0094d3;
    color: #fff;
    padding: 10px 10px 10px 12px;
    border-radius: 0;
}
#main-slider.owl-theme .owl-nav .owl-prev {
    opacity: 1;
    position: absolute;
    cursor: default;
    left: 0;
    color: #fff;
}
#main-slider.owl-theme .owl-nav .owl-next {
    opacity: 1;
    position: absolute;
    cursor: default;
    right: 0;
    color: #fff;
}
#main-slider.owl-theme .owl-nav .owl-prev {
    cursor: pointer;
    opacity: 0;
    transform: translateX(-37px);
    transition: 0.5s all ease-in-out;
}
#main-slider.owl-theme .owl-nav .owl-next {
    cursor: pointer;
    opacity: 0;
    transform: translateX(37px);
    transition: 0.5s all ease-in-out;
}
.owl-carousel .owl-item.active .animate-01 {
    animation: slideInDown 1s ease-in 100ms both;
    animation-delay: 1s;
    animation-duration: 0.2s;
}
.owl-carousel .owl-item.active .animate-02 {
    animation: slideInUp 1s ease-in 100ms both;
    animation-delay: 1.5s;
    animation-duration: 0.2s;
}
.owl-carousel .owl-item.active .animate-03 {
    animation: slideInLeft 1s ease-in 100ms both;
    animation-delay: 2s;
    animation-duration: 0.2s;
}

.slider:hover #main-slider.owl-theme .owl-nav .owl-prev,
.slider:hover #main-slider.owl-theme .owl-nav .owl-next {
 	opacity: 1;
    transform: translateX(0);
    transition: 0.5s all ease-in-out;
}

.slider-info {
	position: absolute;
	bottom: 40px;
	left: 40px;
	background: rgba(0,0,0,0.7);
	padding: 15px;
	width: 35%;
}
.slider-info h3 {
	height: 40px;
	position: relative;
	margin-bottom: 10px;
}
.slider-info h3:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 50px;
	background: #0094d3;
	display: block;
	content: "";
}

.slider-info p {
	font-size: 12px;
}
.slider-info a {
    background: #0094d3;
    padding: 5px;
    text-transform: uppercase;
    font-size: 11px;
    margin-top: 10px;
    display: inline-block;
}
.slider-info h3,
.slider-info p,
.slider-info a {
	color: #fff;
}


/*== main-head ==*/
.main-head {
	margin-top: 50px;
	height: 50px;
	position: relative;
	margin-bottom: 20px;
	position: relative;
}
.main-head:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #0094d3;
    display: block;
    content: "";
}
.more-button {
    background: #0094d3;
    padding: 8px 15px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
    display: inline-block;
}
.more-button:hover {
    background: #000;
    color: #fff;
}


/*== client slider ==*/
#client-slider {
	position: relative;
	overflow: hidden;
}
#client-slider .slider-box img {
	border: 1px solid #ccc;
}
#client-slider .owl-dots {
	display: none;
}
#client-slider.owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    width: 100%;
    top: 28%;
}
#client-slider.owl-theme .owl-nav .owl-prev {
    background: #0094d3;
    color: #fff;
    padding: 10px 12px 10px 10px;
    border-radius: 0;
}
#client-slider.owl-theme .owl-nav .owl-next {
    background: #0094d3;
    color: #fff;
    padding: 10px 10px 10px 12px;
    border-radius: 0;
}
#client-slider.owl-theme .owl-nav .owl-prev {
    opacity: 1;
    position: absolute;
    cursor: default;
    left: -5px;
    color: #fff;
    cursor: pointer;
}
#client-slider.owl-theme .owl-nav .owl-next {
    opacity: 1;
    position: absolute;
    cursor: default;
    right: -5px;
    color: #fff;
    cursor: pointer;
}

/*== product range ==*/
.prd-box {
	background: #d8d8d8;
	border-radius: 10px;
	overflow: hidden;
    transition: 0.5s all ease-in-out;
}
.pad-20 {
	padding: 20px;
}
.gallery {
	margin-top: 20px;
}
.prd-img img {
    transition: 0.5s all ease-in-out;
}
.prd-box:hover .prd-img img {
    transform: scale(1.2);
    transition: 0.5s all ease-in-out;
}
/*== footer ==*/

.construct-footer-top-area {
    background: #1e1e1e none repeat scroll 0 0;
    color: #999;
    padding: 40px 0;
	border-top: 4px solid #0094d3;
	margin-top: 70px;
}
.single-footer{
    margin: 0
}
.single-footer p {
	color: #767676;
}
.single-footer a h3 {
    margin: 12px 0 15px 0;
}
.single-footer img {
    margin-bottom: 15px;
}
.footer-social-icon {
    margin-top: 30px;
}
.footer-social {
    margin-top: 20px;
    padding: 0;
}
.footer-social > li{
    display: inline-block;
}
.footer-social li a{
    background-color: #333333;
    border-radius: 50%;
    color: #777;
    display: block;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 40px;
}
.fb:hover {
    background: #4b6ea9 none repeat scroll 0 0;
    color: #fff;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg)
}
.twitter:hover {
    background: #65bbf2 none repeat scroll 0 0;
    color: #fff;
        -webkit-transform: rotate(360deg);
            transform: rotate(360deg)
}
.gp:hover {
    background: #dd4d41 none repeat scroll 0 0;
    color: #fff;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg)
}
.linkedin:hover {
    background: #0075b5 none repeat scroll 0 0;
    color: #fff;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg)
}
.single-footer > h3, .footer-social-icon > h3 {
    color: #eee;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px;
    text-transform: uppercase;
}
.single-footer > a {
    color: #eee;
    
}
.footer-widget > li {
    border-bottom: 1px dashed #999;
    line-height: 40px;
}
.footer-widget > li:last-child{
    border-bottom: 0px dashed #999;
}
.footer-widget a {
    display: block;
    padding: 5px 0;
    text-transform: capitalize
}
.footer-widget a:hover{
    color: #fff;
    padding-left: 5px
}
.contact-details i {
    color: #fff ;
    margin-right: 10px;
}
.contact-details {
    margin: 6px 0;
    line-height: 30px;
}
.insta-post {
    display: inline-block;
    height: 65px;
    margin: 2px;
    width: 65px;
    position: relative
}
.overlay-insta {
    -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
    background: rgba(23, 23, 23, 0.8) none repeat scroll 0 0;
    cursor: pointer;
    height: 100%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    top: 0;
    -webkit-transform: perspective(500px) rotateY(-90deg);
          transform: perspective(500px) rotateY(-90deg);
    -webkit-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    visibility: hidden;
    width: 100%;
}   
.insta-post:hover .overlay-insta{
    -webkit-backface-visibility: visible;
        backface-visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: perspective(500px) rotateY(0deg);
        transform: perspective(500px) rotateY(0deg);
    visibility: visible;
}
.construct-footer-bottom-area {
    border-top: 1px solid #353535;
    background: #1e1e1e none repeat scroll 0 0;
    color: #999;
    padding: 10px 0 5px 0;
}
.copyright-left {
    text-align: left;
    font-weight: 400
}
.copyright-right{
    text-align: right;
    font-weight: 400
}
.copyright-right > p > i{
    color: #fbb908  ;
    margin: 0px 5px;
    font-weight: 600
}
.copyright-right > p {
    text-transform: capitalize;
}
.copyright-right > p > span {
    color: #fbb908 ;
    font-weight: 700;
    margin: 0 5px;
    text-transform: capitalize;
}
.footer-widget {
	padding: 0;
	list-style: none;
}
.footer-widget li a {
	color: #767676;
	transition: 0.5s all ease-in-out;
}
.footer-widget li a:hover {
	color: #fff;
	text-decoration: none;
	transition: 0.5s all ease-in-out;
}
.visit img {
	max-width: 100%;
	width: auto;
	height: auto;
}
.copyright-left p {
	color: #767676;
}
/*== scroll up ==*/
.scrollup {
    width: 40px;
    height: 40px;
    position: fixed;
    color: #fff;
    bottom: 20px;
    text-align: center;
    right: 20px;
    display: none;
    background-color: #0094d3;
    z-index: 999999999;
    line-height: 37px;
    font-size: 30px;
}
.scrollup:hover {
	background: #000;
}

/*== other pages ==*/
.breadcrumb {
    -webkit-padding-start: 0;
}
.border2564 img {
    border: 1px solid #ccc;
    margin-top: 30px;
}
.ab-head-2 {
    margin: 10px 0 10px;
}
.list-50 {
    list-style: none;
}
.list-50 li {
    width: 20%;
    float: left;
}
.cert-50 img,
.prd-box-zoom img {
    border: 1px solid #ccc;
}
.cert-50 a:active,
.cert-50 a:focus,
.prd-box-zoom a:active,
.prd-box-zoom a:focus {
    outline: 0;
}
.prd-box-zoom {
    margin-top: 30px;
}

h1.main-head.head {
    padding-top: 0;
    margin-top: 0;
}
.top20 {
    margin-top: 50px;
}
.contact_Detail .texts {
    width: 100%;
    margin-top: 10px;
    padding: 10px 10px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    outline: 0;
    border-bottom: 1px solid #ccc;
}

.contact_Detail {
    position: relative;
}

.contact_Detail:before {
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    background: #0094d3;
    height: 2px;
    transition: .5s;
    z-index: 9999;
}
.contact_Detail:hover:before {
    width: 100%;
    transition: .5s;
}

/*==============================
    products pages
==============================*/

.product_id_list  {
    margin: 0;
    padding: 0;
}

.product_id_list li {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.product_id_list.nav-tabs>li>a {
    margin: 10px 10px 10px 0;
    border: 0;
    border-bottom: 2px solid #e4e4e4;  
    border-radius: 0;
    color: #2b2a27;
    font-size: 16px;
    text-transform: uppercase;
}
.product_id_list.nav-tabs>li.active a {
    border-right: 5px solid #0094d3;
    color: #0094d3;
    border-left: 0;
    border-top: 0;
}

.product_id_list.nav-tabs>li.active>a, .product_id_list.nav-tabs>li.active>a:focus, .product_id_list.nav-tabs>li.active>a:hover {
    border-right: 5px solid #0094d3;
    border-bottom: 2px solid #e4e4e4;
    background: #e2e2e2; 
    color: #0094d3;
    border-left: 0;
    border-top: 0;
}
#mechanical_movements img,
#ferrous_castings img,
#non_ferrous_castings img,
#conveyors img,
#fasteners img,
#all_type img {
    border: 1px solid #ccc;
    margin-top: 30px;
}

.slider-box img {
    border: 1px solid #ccc;
}
.dd {
    display: grid;
}
.kk {
    margin-left: 20px;
}
.kk li {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #292929;
    opacity: 1;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}
/*== responsive ==*/
@media (max-width: 1200px) {
	.slider-info {
        width: 32%;
	}
}
@media (max-width: 992px) {
	.logo img {
	    width: 100px;
	}
	.logo h1 {
	    margin-left: 8px;
	    font-size: 25px;
	}
	.mar-20 {
		margin-top: 20px;
	}
	.slider-info {
        display: none;
	}
}

@media (max-width: 768px) {
	#client-slider.owl-theme .owl-nav .owl-prev,
	#client-slider.owl-theme .owl-nav .owl-next,
	#main-slider.owl-theme .owl-nav .owl-prev,
	#main-slider.owl-theme .owl-nav .owl-next {
	    display: none;
	}
}



@media (max-width: 1024px) {
	.inquiry-info:before {
	    display: none;
	}
}


@media (max-width: 550px) {
	.full-width {
		float: none;
		width: 100%;
		margin-top: 30px;
		display: block;
	}
	.logo img {
	    width: 80px;
	}
	.logo h1 {
	    margin-left: 8px;
	    font-size: 24px;
	    top: 0;
	}
	.header-top-right span {
	    font-size: 18px;
	}
	.header-top-right p {
	    font-size: 13px;
	}
	h1.main-head {
	    font-size: 22px;
	}
}

.gallery .m20 {
    margin-bottom: 30px;
}