html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #FEFEFE;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

p{
    line-height: 34px;
}

.btn:focus{
    box-shadow: none;
}

:root {
    --red: #A51111;
    --grey: #BEBEBE;
    --off-white: #FEFEFE;
    --black: #000000;
    scroll-padding-top: 112px;
}

.container{
    padding-left: 50px !important;
    padding-right: 50px !important;
}

@media (min-width: 1470px){
    .container{
        max-width: 1540px;
    }
}

/*Header*/
.header{
    background: #000000 0% 0% no-repeat padding-box;
    z-index: 9;
    width: 100%;
    transition: all 0.3s ease-in-out;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 17px 0;
    height: 147px;
}
.header.sticky-bar{
    background: #000000;
    height: 112px;
}
.navbar{
    align-items: flex-start;
}
.logo{
    width: 206px;
    transition: all 0.3s ease-in-out;
}
.header.sticky-bar .logo{
    width: 150px;
}
.navbar-collapse{
    margin-top: 32px;
    transition: all 0.3s ease-in-out;
}
.header.sticky-bar .navbar-collapse{
    margin-top: 11px;
}
.nav-link{
    display: block;
    color: var(--off-white);
    font-family: Khand;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    padding: 0px !important;
}
.navbar-nav{
    align-items: center;
    gap: 40px;
}
.nav-item .nav-link.active, 
.nav-item .nav-link:hover{
    color: var(--red);
}

#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}          
.navbar-toggler:focus{
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

/* close */
.navbar-toggler{
    padding: 0px;
    border: 0px;
    display: flex;
}
.menu_toggle{
    width: 23px !important;
    height: 23px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in;
    text-align: left;
    position: relative;
    right: 0;
    top: 0px;
    z-index: 90;
    border-radius: 3px;
    line-height: 0px;
    align-items: flex-end;
}
.menu_toggle span{
    height: 3px;
    width: 100%;
    background: var(--off-white);
    display: inline-block;
    transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
    margin: 2px 0px;
}

/* toggle icon animation */
#check1:checked~.menu_toggle span:nth-child(1){
    width: 90%;
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

#check1:checked~.menu_toggle span:nth-child(2){
    width: 0;
}

#check1:checked~.menu_toggle span:nth-child(3){
    width: 90%;
    transform: rotate(-45deg) translateY(-4px) translateX(4px);
}
#check1{
    display: none;
}

.btn-theme, 
.btn-theme.active{
    padding: 12px 34px;
    background-color: var(--red);
    color: var(--off-white);
    color: #FEFEFE;
    font-family: Khand;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    border-radius: 0px;
    border: 0px !important;
    transition: all 0.3s ease-in-out;
}
.btn.btn-theme:hover{
    background-color: #b91313;
    color: var(--off-white);
}
.header .btn-theme{
    margin-left: 10px;
}


/*Home Page Css*/
/*Hero Section*/
.hero-sec{
    padding: 267px 0 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-sec::after{
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.hero-content{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.hero-small-title{
    color: var(--off-white);
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 18px;
}
.hero-title{
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--off-white);
    font-family: Khand;
    font-size: 90px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 0px;
}
.hero-title span{
    color: var(--red);
}
.hero-text{
    color: var(--off-white);
    font-weight: 400;
    max-width: 720px;
    width: 100%;
    margin-bottom: 0px;
}
.btn-sec{
    display: flex;
    gap: 18px;
}
.btn{
    box-sizing: border-box;
}
.btn-theme.btn-br{
    background-color: transparent;
    border: 2px solid var(--off-white) !important;
}
.btn-theme.btn-br:hover{
    background-color: var(--off-white);
    color: var(--black);
}


.hb-sec{
    background-color: var(--black);
    padding: 60px 0;
}
.box-001{
    width: 100%;
    height: 100%;
    padding-left: 30px;
    padding-right: 30px;
    border-left: 1px solid #363636;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.hb-sec .row .col-12:first-child .box-001{
    padding-left: 0px;
    border-left: 0px;
}
.box-001 .icon{
    min-width: 48px;
}
.sub-title{
    color: var(--black);
    font-family: Khand;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.box-001 .sub-title{
    color: var(--off-white);
    margin-bottom: 10px;
}
.box-001 p{
    color: var(--grey);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0px;
}

/*OUR CAPABILITIES*/
.sec-pad{
    padding: 80px 0;
}
.title-box{
    flex-direction: column;
    display: flex;
    gap: 24px;
}
.small-title{
    color: var(--red);
    font-size: 22px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.title{
    color: var(--black);
    font-family: Khand;
    font-size: 70px;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.tb-line{
    width: 120px;
    height: 5px;
    border-radius: 100px;
    background-color: var(--red);
    margin: 0 auto;
}
.oc-box{
    width: 100%;
    height: 100%;
    border: 1px solid #BEBEBE;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
}
.oc-box .top-box{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.img-box{
    position: relative;
}
.oc-icon-box{
    width: 80px;
    height: 80px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -40px;
    left: 20px;
}
.setting-icon{
    width: 40px;
}
.threded-bolt-icon{
    width: 18px;
}
.welding-mask-icon{
    width: 35px;
}
.oc-content{
    padding: 30px 20px 0;
}
.sub-title2{
    color: var(--black);
    font-family: Khand;
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.oc-content .sub-title2{
    margin-bottom: 12px;
}
.oc-content p{
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 0px;
}
.oc-box .bottom-box{
    padding: 0 20px 40px;
}
.learn-more{
    color: var(--red) !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px;
    border: 0px !important;
}
.learn-more img{
    transition: all 0.3s ease-in-out;
}
.learn-more:hover img{
    transform: translateX(5px);
}

/*About Preview*/
.about-sec{
    background-color: var(--black);
}
.content-side.left{
    padding-right: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: max(50px, calc((100vw - 1760px) / 2));
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: var(--off-white);
}
.img-box{
    width: 100%;
    height: 100%;
}
.img-box1 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.about-sec .title{
    color: var(--off-white);
}

/*Industries*/
.inds-sec{
    display: flex;
    flex-wrap: wrap;
    column-gap: 0px;
    row-gap: 80px;
    margin-top: 80px;
}
.inds-box{
    width: 25%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-right: 1px solid #ACACAC;
}
.inds-box h3{
    color: var(--black);
    text-align: center;
    font-family: Khand;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.inds-sec .inds-box:first-child, 
.inds-sec .inds-box:nth-child(5){
    padding-left: 0px;
}
.inds-sec .inds-box:nth-child(4), 
.inds-sec .inds-box:last-child{
    padding-right: 0px;
    border-right: 0px;
}


/*READY TO GET STARTED?*/
.rgs-sec{
    background-size: cover;
    background-position: center;
    position: relative;
}
.rgs-sec::after{
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.rgs-sec .title{
    color: var(--off-white);
}
.text-red{
    color: var(--red);
}
.rgs-sec .text-box{
    max-width: 944px;
    width: 100%;
    color: var(--off-white);
}


/*Milling Page Css*/
.inner-hero-sec{
    padding: 227px 0 80px;
}
.os-box .title-box{
    margin-bottom: 32px;
}
.os-content{
    display: flex;
    flex-direction: column;
    gap: 42px;
}
.os-content .content-box{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.os-content .content-box p{
    margin-bottom: 0px;
}

.capabilities-sec{
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}
.capabilities-sec::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000000B2;
    position: absolute;
    top: 0;
    left: 0;
}
.cap-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: stretch;
    row-gap: 12px;
    flex-wrap: wrap;
}
.cap-ul li{
    color: var(--off-white);
    font-weight: 400;
    line-height: 34px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: calc((100% - 0px) / 3);
}
.cap-ul li::before{
    content: '';
    min-width: 24px;
    height: 24px;
    background-image: url(../../img/icons/circle-check-big.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 4px;
}
.cap-ul.equip-ul{
    flex-direction: column;
    gap: 4px;
}
.cap-ul.equip-ul li{
    color: var(--black);
    width: 100%;
}
.equip-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.equip-card{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.equip-card img{
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.equip-card-body{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.equip-card-body p{
    color: #555;
    line-height: 1.5;
}
.equip-card--text{
    justify-content: flex-end;
    padding-bottom: 4px;
    border-bottom: 1px solid #ACACAC;
}
@media (max-width: 992px){
    .equip-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px){
    .equip-grid{
        grid-template-columns: 1fr;
    }
}
.inds-sec.why-us .inds-box{
    width: 33.33%;
}
.inds-sec.why-us .inds-box:nth-child(3){
    padding-right: 0px;
    border-right: 0px;
}
.inds-sec.why-us .inds-box:nth-child(4){
    padding-left: 0px;
    padding-right: 20px;
    border-right: 1px solid #ACACAC;
}
.inds-sec.why-us .inds-box:nth-child(5){
    padding-left: 20px;
}
.why-us-sec{
    background-color: var(--black);
}
.why-us-sec .title{
    color: var(--off-white);
}
.why-us-sec p{
    color: var(--off-white);
}


/*Contact Us*/
.contact-us .container{
    max-width: 1260px;
}
.form-label{
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 10px;
}
.form-control{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    padding: 9px 18px;
    border: 1px solid #777;
    border-radius: 0px;
}
.form-control::placeholder{
    color: #565656;
    opacity: 1;
}
.form-control:focus{
    border-color: var(--black);
    box-shadow: none;
}
textarea{
    resize: none;
}
form .btn-theme{
    margin-top: 24px;
}





































































/*Footer*/
.footer{
    background-color: var(--black);
}
.p-footer{
    padding: 80px 0;
    display: flex;
}
.logo-sec{
    width: 447px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.logo-sec p{
    color: var(--off-white);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0px;
}
.social-sec{
    display: flex;
    align-items: center;
    gap: 18px;
}
.social-box svg path{
    transition: all 0.3s ease-in-out;
}
.social-box:hover svg path{
    fill: var(--red);
}
.qlcc-sec{
    flex: 1;
}
.f-title{
    color: var(--off-white);
    font-family: Khand;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 32px;
}
.f-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.f-ul li a{
    color: var(--off-white);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    transition: all 0.3s ease-in-out;
}
.fc-box a{
    transition: all 0.3s ease-in-out;
}
.f-ul li a:hover, 
.fc-box a:hover{
    color: var(--red);
}
.f-contact{
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.fc-box{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--off-white);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.fc-box img{
    margin-top: 2px;
}

.s-footer{
    padding: 30px 0;
    border-top: 1px solid #363636;
}
.copyright-sec{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.copyright-text{
    color: var(--off-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.xponex-link{
    color: #9D9D9D;
    display: inline-flex;
    align-items: center;
}
.xponex-link:hover{
    text-decoration: none;
    opacity: 0.85;
}
.xponex-logo{
    height: 1.25em;
    vertical-align: middle;
    margin-left: 4px;
}


.regular{
    font-weight: 400;
}
.semibold{
    font-weight: 600;
}

.text-off-white{
    color: var(--off-white);
}

.font-khand{
    font-family: "Khand", sans-serif;
}

.z-1{
    position: relative;
    z-index: 1;
}
.navbar-brand{
    position: relative;
    z-index: 9999;
}