@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&amp;family=Sora:wght@100..800&amp;display=swap');
:root {
    --primary: #F38020;
    --secondary: #FFF3E9;
    --text: #221F1F;
    --dark: #000000;
    --light: #FFF;
    --title-font: "Sora", sans-serif;
    --body-font: "Poppins", sans-serif;
}
body {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    color: var(--text);
    font-family: var(--body-font);
    overflow-x: hidden;
}
p b {
    font-weight: 600;
}
a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.4s;
}
a:hover {
    color: var(--dark);
    text-decoration: none;
}
p:last-child {
    margin-bottom: 0;
}
::selection {
    color: var(--light);
    background: var(--primary);
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: var(--title-font);
    font-weight: 700;
}
html .btn {
    background: var(--light);
    box-shadow: none;
    border-radius: 0;
    padding: 0 26px;
    line-height: 42px;
    border: 1px solid var(--light);
    color: var(--title-font);
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: capitalize;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}
html .btn:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    background-color: var(--light);
    z-index: -1;
    width: 0;
    transition: all 0.4s;
}
html .btn:hover:before{
    width: 100%;
    left: 0;
    right: auto;
}
html .btn:focus{
    box-shadow: none;
}
html .btn-outline {
    background: transparent;
    color: var(--light);
}
html .btn-primary {
    color: var(--text);
    background: var(--primary);
    border-color: var(--primary);
}
html .btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--dark);
}
html .contact-btn .btn:hover {
    border-color: var(--light);
}
html .container {
    width: 1370px;
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
}
html .container-sm {
    width: 1230px;
}
section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}
.main{
    overflow-x: hidden;
}
.product_list_page .main{
    overflow-x: visible;
}
.header-main-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    transition: all 0.4s;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4.5px);
    transition: all 0.4s;
}
.sticky header {
    background: rgba(0, 0, 0, 0.7);
}
.header-logo a {
    display: block;
    width: 120px;
}
.sticky .header-logo a {
    width: 100px;
}
.header-logo img {
    display: block;
    width: 100%;
}
header nav > ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
header nav > ul > li {
    position: relative;
}
header nav > ul > li + li {
    margin-left: 40px;
}
header nav > ul > li > a {
    color: var(--light);
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 100px;
    position: relative;
    text-transform: capitalize;
}
.sticky header nav > ul > li > a {
    line-height: 80px;
}
header nav > ul > li > a:before {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: var(--primary);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    margin: auto;
    transition: all 0.4s;
}
header nav > ul > li.active > a,
header nav > ul > li:hover > a {
    color: var(--primary);
}
header nav > ul > li.active > a:before,
header nav > ul > li:hover > a:before {
    width: 100%;
}
header nav > ul > li.menu-parent > a:after {
    content: "";
    display: inline-block;
    vertical-align: top;
    border-right: 2px solid ;
    border-bottom: 2px solid ;
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    margin-top: -4px;
}
.sub-menu {
    position: absolute;
    top: 100%;
    background: var(--light);
    left: 0;
    min-width: 230px;
    padding: 10px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translatey(20px);
    visibility: hidden;
    transition: all 0.4s;
}
li:hover > .sub-menu {
    opacity: 1;
    transform: translatey(0);
    visibility: visible;
}
.sub-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
}
.sub-menu ul li {
    margin-bottom: 5px;
}
.sub-menu ul li:last-child {
    margin-bottom: 0;
}
.sub-menu ul li a {
    color: var(--dark);
    display: block;
    padding: 8px;
    line-height: 120%;
    position: relative;
}
.sub-menu ul li.active a {
    color: var(--primary);
}
.sub-menu ul li a:hover {
    color: var(--primary);
    /*background: var(--primary);*/
}
.sub-menu ul li.active {
    color: var(--primary);
    /*background: var(--primary);*/
}
.navbar-toggle{
    display: none;
}
.text-light {
    color: var(--light) !important;
}
.scrollToTop {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    width: 40px;
    height: 40px;
    border-radius: 55px;
    color: var(--light);
    text-align: center;
    background: var(--dark);
    position: fixed;
    z-index: 9;
    bottom: 80px;
    right: 16px;
    opacity: 0;
    transition: all 0.5s;
}
.sticky .scrollToTop {
    opacity: 1;
}
.main-slider .item {
    display: block;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main-slider .item:before {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.72) 100%);*/
}
.banner-text {
    /*width: 940px;*/
	width:1120px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.banner-text :is(h6,h1,p) {
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.4s;
}
.active .banner-text :is(h6,h1,p) {
    opacity: 1;
    transform: translateY(0);
}
.banner-text h6 {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 160%;
    font-weight: 400;
    margin-bottom: 11px;
}
.banner-text h1 {
    font-size: 35px;
    line-height: 94%;
    font-weight: 400;
    margin-bottom: 41px;
    transition-delay: 0.4s;
}
.banner-text h1 span{
    color: var(--primary);
}
.banner-text p {
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    /*padding: 0 15%;*/
    transition-delay: 0.6s;
}
html .main-slider .owl-nav [class*="owl-"] {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-size: 0;
    position: relative;
    position: absolute;
    top: 0;
    left: 40px;
    bottom: 0;
    margin: auto;
    transition: all 0.4s;
}
html .main-slider .owl-nav .owl-next {
    left: auto;
    right: 40px;
    transform: scaleX(-1);
}
html .main-slider .owl-nav [class*="owl-"]:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('data:image/svg+xml,<svg width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.5 1L1.5 6L6.5 11" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}
html .main-slider .owl-nav [class*="owl-"]:hover {
    background: rgba(243, 128, 32, 0.19);
    border-color: rgba(243, 128, 32, 0.19);
}
.main-slider .text-right {
  text-align: right !important;
}
.about-section {
    padding-top: 60px;
    padding-bottom: 150px;
}
.about-img:before {
    content: '';
    display: block;
    width: 160px;
    height: 160px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    margin: 20px;
}
.about-section .title h2 span {
	color: var(--primary);
	font-weight:500;
}
.aboutus_page_section .title h2 span {
	color: var(--primary);
	font-weight:500;
}
.exptext {
    display: flex;
    gap: 14px;
    position: absolute;
    right: -114px;
    bottom: -93px;
}
.exptext h3 {
    font-size: 160px;
    font-weight: 200;
    line-height: 90%;
    color: var(--primary);
    margin-bottom: 0;
}
.exptext h5 {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 0;
}
.exptext h5 span {
    display: block;
    font-size: 70px;
    font-weight: 200;
    line-height: 80%;
    margin-bottom: 7px;
    margin-left: -8px;
}
.about-section .title h2 {
    font-size: 42px;
    line-height: 100%;
}
.about-section .text {
    padding-left: 90px;
}
.title {
    margin-bottom: 30px;
}
.title h6 {
    font-size: 25px;
    line-height: 140%;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--primary);
}
.title h2 {
    font-size: 40px;
    line-height: 140%;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--text);
}
.title h2 b {
    font-weight: 500;
}
.title-icon {
    display: inline-flex;
    align-items: center;
}
.title-icon:after {
    content: '';
    display: block;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, #F38020 0%, rgba(243, 128, 32, 0) 100%);
    margin-left: -1px;
}
.title-icon.before-line:before {
    content: '';
    display: block;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, #F38020 0%, rgba(243, 128, 32, 0) 100%);
    transform: scaleX(-1);
    margin-right: -1px;
}
.title-icon img {
    display: block;
    width: 19px;
}
.btn-wpr {
    margin-top: 30px;
}
.industries-section {
    background: var(--secondary);
    /*padding-bottom: 30px;*/
}
.industries-section .title-icon {
    margin-bottom: 10px;
}
.industries-section .title ~ p {
    font-size: 18px;
}
.product-wpr,
.certificate-wpr {
    margin-top: 40px;
}
.product-wpr .g-4,
.certificate-wpr .g-4 {
    --bs-gutter-y: 20px;
    --bs-gutter-x: 20px;
}
.product-box {
    background: var(--light);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}
.product-box .image {
    width: 100%;
    height: 200px;
    position: relative;
    z-index: 1;
}
.product-box .image:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    opacity: 0.45;
    transition: all 0.4s;
    z-index: 5;
}
.product-box:hover .image:before {
    opacity: 0;
}
.product-box .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
.product-box:hover .image img {
    filter: grayscale(0%);
}
.product-box .text {
    padding: 0 30px 25px;
}
.product-box .text .product-img {
    width: 230px;
    height: 180px;
    margin: -108px auto 30px;
    position: relative;
    z-index: 1;
}
.product-box .text .product-img video,
.product-box .text .product-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-box .text h3 {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
	font-weight: 500;
}
.product-box .text h3 a {
    color: inherit;
}
.product-box:hover .text h3 a {
    color: var(--primary);
}
.product-box .text .km-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: var(--text);
    font-size: 15px;
    font-weight: 400;
}
.product-box .text .km-link:hover {
    color: var(--primary);
}
.product-box .text .km-link span {
    display: block;
    transform-origin: left center;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    transition: width 0.5s;
}
.product-box:hover .text .km-link {
    gap: 10px;
}
.product-box:hover .text .km-link span {
    width: 82px;
}
.parallax {
    background-image: url('../images/banner-image.jpg');
    background-color: var(--dark);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 200%;
    /* height: 100dvh; */
    transition: all 0.5s;
}
.certificate-section{
    /*margin-top: -90px;*/
    padding-bottom: 140px;
}
.certificate-box .image {
    background: rgba(255, 243, 233, 0.3);
    width: 100%;
    padding-top: 100%;
    position: relative;
}
.certificate-box .image:before,
.certificate-box .image:after {
    content: '';
    display: block;
    width: 88px;
    height: 88px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    margin: 15px;
    transition: all 0.4s;
}
.certificate-box .image:after {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    margin: 15px;
    scale: -1;
}
.certificate-box:hover .image:before,
.certificate-box:hover .image:after {
    width: 120px;
    height: 120px;
    border-top: 2px solid var(--dark);
    border-left: 2px solid var(--dark);
}
.certificate-box .image img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.4s;
    width: 200px;
    height: 100px;
    object-fit: contain;
}
.certificate-box:hover .image img {
    transform: scale(0.9);
}
.certificate-box .image a{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.certificate-box .image a:before {
    content: "";
    display: block;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
    z-index: 1;
}
.certificate-box .image a:after {
    content: "";
    display: block;
    background: url("../images/loupe.png") no-repeat center center;
    filter: brightness(0) invert(1);
    transform: scale(1.5);
    background-size: 40px auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
    z-index: 1;
}
.certificate-box .image:hover a:before {
    opacity: 0.7;
    background: linear-gradient(135deg, #F38020 0%, #F38020 100%);
}
.certificate-box .image:hover a:after {
    opacity: 1;
    transform: scale(1);
}
.plant-section {
    padding-bottom: 40px;
}
.plant-section .image:before {
    content: '';
    display: block;
    width: 90px;
    height: 90px;
    background: var(--light);
    position: absolute;
    left: 0;
    top: 0;
}
.plant-section .image:after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: var(--primary);
    position: absolute;
    left: 90px;
    top: 90px;
}
.plant-section .border-box {
    content: '';
    display: block;
    width: 160px;
    height: 160px;
    border-right: 2px solid var(--light);
    border-bottom: 2px solid var(--light);
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 20px;
}
.plant-section .title h2 {
    line-height: 167%;
}
.map-section .title {
    margin-bottom: 0px;
}
.map-section h2 span{
	color: var(--primary);
	font-weight:500;
}
.map-image img {
    max-height: 712px;
    object-fit: cover;
}
.num-count-section h6 {
    color: var(--text);
    font-size: 14px;
    line-height: 120%;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.num-count-section h2 {
    color: var(--text);
    font-size: 80px;
    line-height: 120%;
    font-weight: 300;
    margin-bottom: 0;
}
.product-count {
    margin-bottom: 80px;
}
.num-count-section .product-count h6 {
    color: var(--primary);
}
.num-count-section .product-count h2 {
    color: var(--primary);
    font-size: 130px;
}
.iron-melt-img {
    margin-top: -257px;
}
.footer-top {
    padding: 40px 0 60px;
}
.footer-top h4 {
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: var(--text);
    margin-bottom: 20px;
}
.footer-top h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: var(--text);
    margin-bottom: 0;
}
ul.links {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 36px;
    margin-bottom: 32px;
    width: 380px;
    max-width: 100%;
}
ul.links a {
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    color: var(--tect);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
ul.links a:hover {
    color: var(--primary);
}
ul.links a:before {
    content: '';
    display: block;
    width: 8px;
    min-width: 8px;
    height: 4px;
    background: var(--primary);
    border-radius: 50px;
}
ul.social-media {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
ul.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(34, 31, 31, 0.06);
    color: var(--text);
    border-radius: 50px;
}
ul.social-media a:hover {
    background: var(--primary);
    color: var(--light);
}
.footer-logo a {
    display: block;
    width: 190px;
    margin: 0 auto 24px;
}
.footer-logo a:hover {
    transform: scale(0.9);
}
.footer-logo a img {
    display: block;
    width: 100%;
}
.footer-logo ~ p {
    margin: 0 -10px;
}
.fcontact-wpr {
    padding-left: 20%;
}
ul.contact-info {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.contact-info li {
    position: relative;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 160%;
    color: var(--text);
    padding-left: 52px;
    min-height: 40px;
}
ul.contact-info li:last-child {
    margin-bottom: 0;
}
ul.contact-info li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(34, 31, 31, 0.06);
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 0;
}
ul.contact-info li a {
    color: inherit;
    display: inline-block;
    margin-top: 6px;
}
ul.contact-info li a:hover {
    color: var(--primary);
}
.contactus-page-section .btn:focus{
	background-color: var(--primary);
	border-color: var(--primary);
}
.footer-bottom {
    padding: 14px 0;
    background: rgba(138, 136, 136, 0.1);
}
.footer-bottom p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.204597px;
}
.laxraj-love svg, .laxraj-love .fa {
    color: var(--primary);
    margin: 0 3px;
    font-size: 10px;
    animation: pound .35s infinite alternate;
    -webkit-animation: pound .35s infinite alternate;
    width: 12px;
    height: auto;
}
@keyframes pound {
    to {
        transform: scale(1.1)
    }
}
.laxraj-love a {
    text-decoration: none;
    color: var(--dark);
    position: relative;
}
p.laxraj-love {
    color: var(--dark);
}
.laxraj-love a:hover {
    color: var(--primary);
}
.laxraj-love a:hover:before {
    width: 100%;
}
.inner-banner {
    background-image: url("../images/inner_banner_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    padding: 168px 0 65px;
}
.inner-banner::before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.inner-banner h2 {
    font-size: 50px;
    margin: 0 0 0;
    position: relative;
    z-index: 1;
    color: var(--light);
    text-align: center;
    font-weight: 100;
	margin-top: 20px;
}
.breadcrumb-list ul {
    list-style: none;
    margin: 0;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 11px;
    text-transform: uppercase;
}
.breadcrumb-list ul li, .breadcrumb-list ul li a {
    color: var(--light);
}
.breadcrumb-list ul li {
    margin-right: 20px;
    position: relative;
}
.breadcrumb-list ul li:last-child{
    margin-right: 0;
}
.breadcrumb-list ul li.active{
    color: var(--primary);
}
.breadcrumb-list ul li, .breadcrumb-list ul li a {
    color: var(--light);
}
.breadcrumb-list ul li:after {
    opacity: 0.7;
    content: "";
    display: inline-block;
    border-right: 2px solid var(--light);
    border-bottom: 2px solid var(--light);
    transform: rotate(315deg);
    width: 7px;
    height: 7px;
    margin: 0 0 2px 14px;
    transition: all 0.4s;
}
.breadcrumb-list ul li:last-child::after{
    display: none;
}
.reward-wrp .item-box .text-wrp{
    text-align: left;
}
.reward-wrp .item-box:nth-child(2n + 2) .text-wrp {
    text-align: right;
}
.reward-wrp .item-box .image-wrp {
    height: 340px;
    width: 340px;
    margin: 0 auto;
    position: relative;
    border: 20px solid var(--light);
    border-radius: 50%;
}
.reward-wrp .item-box .image-wrp img {
    border-radius: 50%;
    display: block;
    width: 100%;
}
.reward-wrp .item-box .text-wrp h2 {
    font-size: 36px;
    line-height: 120%;
    margin-top: 0;
    margin-bottom: 20px;
}
.reward-wrp .item-box .text-wrp p {
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    margin-bottom: 15px;
}
.reward-wrp .item-box:last-child{
    margin-bottom: 0px;
}
.reward-wrp:before{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    top: 0;
    border: 1px solid #EEEEEE;
    width: 1px;
    left: 0;
    right: 0;
    margin: auto;
}
.reward-wrp .item-box:before{
    content: '';
    display: block;
    position: absolute;
    height: 0%;
    top: 0;
    border: 1px solid #EEEEEE;
    width: 1px;
    left: 0;
    right: 0;
    margin: auto;
}
.reward-wrp .item-box.aos-animate::before {
    animation: lineanimation 1s linear 1 forwards;
    border-color: var(--primary);
}
@keyframes lineanimation{
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}
.reward-wrp{
    position: relative;
}
.reward-wrp .item-box {
    padding-bottom: 60px;
    position: relative;
}
.reward-wrp .item-box .row {
    --bs-gutter-x: 110px;
}
.reward-wrp .item-box:nth-child(2n + 2) .col-md-6:nth-child(1) {
    order: 1;
}
.reward-wrp .item-box:nth-child(2n + 2) .col-md-6:nth-child(1) .text-wrp {
    text-align: left;
}
.our_process_section .container{
    width: 1030px;
}
.reward-wrp .item-box .number {
    height: 54px;
    width: 54px;
    border: 2px solid #EEEEEE;
    background-color: var(--light);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 60px;
    right: 0;
    left: 0;
    margin: auto;
    transition: all 0.4s;
}
.reward-wrp .item-box .number h6 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.reward-wrp .item-box.aos-animate .number,
.reward-wrp .item-box:hover .number {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}
.reward-wrp .item-box.aos-animate .number{
    border-color: var(--primary);
    transition-delay: 0.3s;
}
.reward-wrp .item-box .image-wrp:after {
    content: "";
    background-color: #EEEEEE;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -25px;
    z-index: -1;
    border-radius: 50%;
    transition: all 0.4s;
    transition-delay: 0.3s;
}
.reward-wrp .item-box.aos-animate .image-wrp:after {
    background-color: var(--primary);
}
.reward-wrp .item-box:nth-child(2n + 2) .image-wrp::after {
    right: 0;
    left: -25px;
}
.reward-wrp .item-box:hover .image-wrp:after {
    background-color: var(--primary);
}
html .fancybox__thumb {
    background-color: #fff;
}
.reward-wrp .item-box .text-wrp p b {
    font-weight: 700;
}
/*Animation*/
.overflow-unset{
    overflow: unset;
}
.an-down{
    margin-top: -500px;
}
.an-section{
    margin-top: 100px;
    position: relative;
    margin-bottom: 780px;
}
.an-up {
    display: flex;
    align-items: flex-end;
    height: 460px;
    overflow: hidden;
    justify-content: center;
    margin-bottom: -492px;
    position: sticky;
    z-index: 97;
    top:0;
    margin-left: -141px;
}
.an-up .inner {
    position: relative;
}
.an-up .an-up-3 {
    position: relative;
    margin-bottom: 70px;
}
.an-up .an-up-1 {
    position: absolute;
    left: 30px;
    bottom: 130px;
}
.an-up .an-up-2 {
    margin: 0 0 -36px 30px;
}
.an-up .an-up-3 .an-up-3-fill-img {
    position: absolute;
    bottom: -50px;
    left: 30px;
    opacity: 0;
}

/* Certificates Start  */
.certificate-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.certificate-list .item {
    width:25%;
    padding: 0 30px 0 15px;
	margin-bottom:50px;
	position:relative;
}
.certificate-list .item::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	top:0;
    margin: 15px 15px -15px 30px;
    background: #efefef;
    z-index: -1;
    border-radius: 0;
}
.certificate-list .img {
    /*height: 350px;*/
    height: auto;
    border-radius: 0;
    overflow: hidden;
	transition:all 0.5s;
	display:flex;
	align-items:center;
	justify-content:center;
	border:2px solid #eee;
	background:#fff;
}
.certificate-list .img a {
    display: block;
    height: 100%;
	position:relative;
}
.certificate-list .img a:before{
	content:"";
	display:block;
	background:#000;
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	opacity:0;
	transition:all 0.5s;
	z-index:1;
}
.certificate-list .img:hover a:before{
	opacity:0.7;
	background: linear-gradient(135deg, #F38020 0%, #F38020 100%);
}
.certificate-list .img a:after{
	content:"";
	display:block;
	background:url("../images/loupe.png") no-repeat center center;
	filter:brightness(0) invert(1);
	transform:scale(1.5);
	background-size:40px auto;
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	opacity:0;
	transition:all 0.5s;
	z-index:1;
}
.certificate-list .img:hover a:after{
	opacity:1;
	transform:scale(1);
}
.certificate-list .img img {
	display:block;
	transition:all 0.5s;
}
.certificate-list .img:hover img{
    transform:scale(1.1);
}
/* Certificates End  */
/* Infrastructure Start  */
.grid-sizer, 
.grid-item {
    float: left;
    width: 33%;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    transition: all 0s;
}
.gallery .grid-item {
    padding: 3px;
}
.gallery-box {
    position: relative;
    margin: 0;
    //border-radius: 10px;
    overflow: hidden;
}
.gallery-box .img{
	overflow:hidden;
	position:relative;
}
.gallery-box .img:before{
	content:"";
	display:block;
	background:var(--primary);
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	opacity:0;
	transition:all 0.5s;
	z-index:1;
}
.gallery-box:hover .img:before{
	opacity:0.5;
}
.gallery-box .img:after{
	content:"";
	display:block;
	background:url("../images/view.png") no-repeat center center;
	filter:brightness(0) invert(1);
	transform:scale(1.5);
	background-size:40px auto;
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	opacity:0;
	transition:all 0.5s;
	z-index:1;
}
.gallery-box:hover .img:after{
	opacity:1;
	transform:scale(1);
}
.gallery-box .img img{
	display:block;
	transition:all 0.5s;
}
.gallery-box:hover img{
	-webkit-transform:scale(1.3);
	transform:scale(1.3);
}
/* Infrastructure End  */
/* About Us Page Start  */
.aboutus_page_row {
    padding: 90px 0 0 0;
}
.aboutus_page_item .image:before {
    width: 50px;
    height: 50px;
}
.aboutus_page_item .image:after{
    width: 30px;
    height: 30px;
    left: 50px;
    top: 50px;
}
.aboutus_page_item .border-box {
    width: 80px;
    height: 80px;
}
.aboutus_page_item h6 {
    color: var(--primary);
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
    font-weight: 500;
}
.icon-li-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.icon-li-list img {
    max-width: 70px;
}
.icon-li-list li:last-child img{
    max-width: 60px;
}
.aboutus_page_row .row .col-lg-3:nth-child(2n) .aboutus_page_item{
    margin-top: 30px;
}
.aboutus_page_item_text {
    width: 100%;
    padding-top: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 1px solid var(--primary);
}
.aboutus_page_item_text::after{
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: var(--primary);
    left: -4px;
    bottom: 0;
    border-radius: 50%;
}
.aboutus_page_item .image img {
    height: 240px;
    object-fit: cover;
}
/* Valve Components Page Start  */
.valve-components-item {
    width: 100%;
    margin-top: 50px;
}
.valve-components-item {
    width: 100%;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.valve-components-img {
    /*background: rgba(255, 243, 233, 0.3);
    background: rgba(242, 242, 242, 0.3);*/
    /*box-shadow: 8px 8px 2px 1px rgba(34, 31, 31, .1);*/
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid transparent;
    transition-duration: 0.3s;
}
.valve-components-img img {
    /*max-height: 150px;*/
}
.valve-components-img:hover{
    transition-duration: 0.3s;
    box-shadow: none;
    /*border: 1px solid rgba(34, 31, 31, .1);*/
	cursor: pointer;
}
.valve-components-img:hover img {
	transform: scale(0.9);
	transition: all 0.4s;
}
.valve-components-section h2 span{
	color: var(--primary);
	font-weight:500;
}
/* Machining Page Start  */
.machining-card {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 60px;
}
.machining-item {
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: center;
}
.machining-img {
    width: 150px;
    flex: none;
}
.machining-content {
    flex: 1;
    /*background: var(--secondary);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);*/
    padding: 20px;
    position: relative;
    border-left: 2px solid var(--primary);
}
.machining-content::before{
    position: absolute;
    content: "";
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary);
    z-index: -1;
}
.machining-content h4{
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 5px;
    font-weight: 600;
}
.machining-content p{
    margin-bottom: 15px;
	font-size: 14px;
}
.machining-content ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.machining-content li{
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: var(--text);
    display: flex;
    gap: 10px;
}
.machining-content li span {
    font-weight: 600;
    flex: 1;
}
.machining-content li + li{
    margin-top: 5px;
}
/* Testing & Quality Page Start  */
.testing-quality-card {
    width: 100%;
    height: 100%;
    border-bottom: 2px solid var(--primary);
    padding-top: 40px;
    padding-bottom: 20px;
}
.testing-quality-img {
    width: 100%;
    height: 250px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    /*background: var(--secondary);*/
}
.testing-quality-img img {
    max-height: 200px;
}
.testing-quality-content {
    padding: 45px 10px 0 10px;
    position: relative;
}
.testing-quality-content h6 {
    position: absolute;
    top: -25px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
}
.testing-quality-content h4{
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: capitalize;
}
.testing-quality-content p{
    margin-bottom: 0px;
	font-size: 14px;
}
.testing-quality-section .row {
    gap: 50px 0;
}
/* Technical Page Start  */
.technical-table-main h2{
    font-size: 22px;
    line-height: 130%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.technical-page-section .title h2 span {
	color: var(--primary);
	font-weight:500;
}
.technical-table-main h2 strong{
    color: var(--primary);
    font-weight: 600;
}
.technical-table-main h4,
.technical-table-main h3{
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 10px;
    font-weight: 500;
}
.technical-table-main h3{
    color: var(--primary);
}
.technical-table-main table{
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    color: var(--text);
}
.technical-table-main tbody,
.technical-table-main td,
.technical-table-main tfoot,
.technical-table-main th,
.technical-table-main thead,
.technical-table-main tr{
    border: 1px solid rgba(0, 0, 0, 0.3);
}
.technical-table-main table td {
    padding: 5px 10px;
}
.technical-table-main table td strong {
    color: var(--primary);
    font-weight: 500;
}
.technical-table-first{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}
.technical-table-first table{
    flex: 1;
}
/* Contact Us Page Start  */
.contact-form input, .contact-form textarea {
    border: none;
    outline: none;
    width: 100%;
    display: block;
    border-radius: 0px;
    height: 60px;
    color: var(--dark);
    font-size: 14px;
    padding: 0 10px 0 25px;
    background-color: rgba(138, 136, 136, 0.1);
    margin-bottom: 20px;
}
.contact-form textarea {
    height: 243px;
    padding-top: 20px;
}
.contact-form .text-right{
    text-align: right;
}
.block-title__sub-title {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--primary);
}
.contact-info .row {
    gap: 50px 0;
}
.contacts-info {
    width: 100%;
    padding-right: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contacts-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary);
    flex: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.contacts-icon:after{
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    width: 22px;
    height: 1px;
    background: var(--primary);
}
.contacts-icon svg {
    width: 27px;
    height: 27px;
}
.contacts-text{
    padding-left: 15px;
    border-left: 1px solid var(--primary);
}
.contacts-text .contacts-title{
    font-size: 20px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 10px;
}
.contacts-text p{
    margin-bottom: 0px;
}
.contacts-text p + p{
    margin-top: 3px;
}
.contacts-text p a{
    color: var(--text);
}
.contacts-text p a:hover{
    color: var(--primary);
}
.certificate-name {
    padding: 15px 0 0 35px;
}
.certificate-name h5 {
    margin: 0;
    font-size: 18px;
    line-height: normal;
	font-weight:500;
}
.history-sec .title h2 span {
	color: var(--primary);
	font-weight:500;
}
.history_thumbs_wrap {
    /*max-width: 1320px;*/
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(138, 136, 136, 0.1) 0%, rgba(138, 136, 136, 0) 100%);
    padding:0 10%;
}
.history_thumbs_wrap h6 {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.6;
    line-height: 70px;
    text-align: center;
    cursor: pointer;
    margin: 0;
    transition: all 0.4s;
    position: relative;
}
.history_thumbs_wrap .current h6,
.history_thumbs_wrap h6:hover {
    opacity: 1;
}
.history_thumbs_wrap h6:after{
    width:0;
    content:'';
    display: block;
    position: absolute;
    left:0;
    right:0;
    top:0;
    margin:auto;
    background-color: var(--primary);
    height:3px;
    transition: all 0.4s;
}
.history_thumbs_wrap .current h6:after{
    width: 100%;
}
.history-box{
    opacity:0.3;
    transition: all 0.4s;
}
.active.center .history-box{
    opacity:1;
}
.history_big .item {
    padding: 0 60px;
    border-right: 1px solid rgba(0,0,0,0.1);
}
.history-box .img {
    padding-top: 60%;
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}
.history-box .img img{
    position: absolute;
    left:0;
    top:0;
    height: 100%;
    display: block;
    transition: all 0.4s;
    object-fit: cover;
    transform: scale(1.2);
}
.active.center .history-box .img img,
.active.center .history-box:hover .img img{
    transform: scale(1.2);
}
.active.center .history-box .img img{
    transform: scale(1);
}
.active.center .history-box:hover .img img{
    transform: scale(1.1);
}
.history-box h6 {
    font-size: 40px;
    color: var(--primary);
    margin: 0 0 12px;
}
.history-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 16px;
    line-height: 120%;
}
.history-box p {
    font-size: 15px;
    opacity: 0.7;
}
.history-slider {
    margin-top: 40px;
}
.history_big {
    margin-bottom: 30px;
}
.history_big .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}
.history_big .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0 0;
}
.history_big.owl-carousel .owl-nav [class*="owl-"] {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary);
    display: block;
    color:var(--primary);
    transition: all 0.4s;
}
.history_big.owl-carousel .owl-nav [class*="owl-"]:hover {
    background-color: var(--primary);
    color:#fff;
}
html .language-feild .goog-te-gadget-simple {
    font-size: 14px;
    font-family: var(--body-font);
    line-height: 30px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--light);
}
html .language-feild .goog-te-gadget-simple .goog-te-gadget-icon {
    display: none;
}
html .language-feild .goog-te-gadget-simple a [aria-hidden="true"] {
    font-size: 0;
}
html .language-feild .goog-te-gadget-simple a {
    --bs-form-select-bg-img: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 5L8 11L14 5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right .45rem center;
    background-size: 16px 12px;
    font-size: 14px;
    margin: 0;
    padding: 0 14px 0 10px;
    display: flex;
    align-items: center;
    color: var(--light);
}
html .language-feild .goog-te-gadget-simple a span {
    border: 0 !important;
}
.header-main-bar .contact-btn {
    margin-left: 50px;
    margin-right: 20px;
}
.header-main-bar .header-navbar {
    margin-left: auto;
}
.main-slider .item a{
    display: block;
}