/* Custom css */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0; 
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block; 
}
blockquote, q {
    quotes: none; 
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none; 
}
a,
a:hover {
    text-decoration: none;
    transition: 0.5s ease all;
    cursor: pointer; 
}
a {
text-decoration: none !important;
    outline: none !important;
    color: inherit; 
}
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif; 
}
ol, ul, li {
    list-style: none; 
}
:is(h1,h2,h3,h4) {
    font-family: "Roboto Condensed", sans-serif; 
}

:root{
    /* Color */
    --primary-color: #0059a9;
    --text-gray: #76797f;
    --text-color: #677078;
    --nav-text: #61656F;
    --second-color: #f43231;
    --light-bg: #f4f5f8;

    /* Font family */
    --main-font: "Roboto", sans-serif;
    --con-font: "Roboto Condensed", sans-serif; 
}


p{
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.688;
    margin-bottom: 20px;
}
h1{
    font-size: 50px;
    color: var(--primary-color);
    font-weight: 600;
}
h2{
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 600;
}
h3{
    font-size: 27px;
    color: var(--primary-color);
    font-weight: 600;
}
h4{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

/**====================================
Header 
====================================**/
.metalworld-header{
    flex-wrap: wrap;
    padding: 0;
    background: #fff;
}
.scrolled .metalworld-header{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.metalworld-header .nav-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
}
.metalworld-header .navbar-brand{
    padding: 0;
}
.metalworld-header .navbar-brand img{
    display: block;
    max-width: 200px;
	max-height: 65px;
}
.metalworld-header .container{
    max-width: 1400px;
    padding-left: 40px;
    padding-right: 40px;
}
.nav-top-info{
    display: flex;
    gap: 50px;
}
.nav-top-contact{
    display: flex;
}
.nav-top-contact .ntc-item{
    padding: 0 20px;
}
.ntc-item h4{
    font-size: 15px;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.ntc-item p{
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.4;
    margin-bottom: 0;
}
.ntc-item a:hover{
    color: var(--second-color);
}
.nav-top-contact .ntc-item+.ntc-item{
    border-left: 1px solid #e9ecf2;
}
.nav-top-info .menu{
    display: flex;
    gap: 10px;
}
.nav-top-info .menu a{
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    transition: 0.5s ease all;
}
.nav-top-info .menu a:hover{
    background: var(--second-color);
}
.nav-menu{
    width: 100%;
    background: var(--light-bg);
    /* background: var(--primary-color) */
}
.nav-menu .navbar-nav .nav-item .nav-link{
    font-family: var(--con-font);
    font-size: 15px;
    color: var(--nav-text);
    /* color: #fff; */
    font-weight: bold;
    line-height: 1.467;
    text-transform: uppercase;
    padding: 18px 30px;
}
.nav-menu .navbar-nav .nav-item .nav-link:hover,
.nav-menu .navbar-nav .nav-item .nav-link.active{
    background: #fff;
}
.metalworld-header .dropdown .dropdown-toggle::after{
    width: 8px;
    height: 8px;
    border: 2px solid var(--nav-text);
    rotate: 45deg;
    border-top: 0;
    border-left: 0;
    display: inline-block;
    margin-left: 8px;
    vertical-align: 3px;
}
.metalworld-header .dropdown span.drop{
    display: none;
}
.metalworld-header .dropdown .dropdown-menu{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 120%;
    background: var(--light-bg);
    min-width: 220px;
    padding: 10px 0;
    transition: 0.5s ease all;
    z-index: 1000;
    display: block;
    border: 0;
    border-radius: 0;
    margin: 0;
}
.metalworld-header .dropdown .dropdown-menu::before{
    content: "";
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -20px;
    left: 30px;
    border: 10px solid transparent;
    border-bottom-color: var(--light-bg);
    transition: 1s ease all;
}
.metalworld-header .dropdown:hover .dropdown-menu::before{
    visibility: visible;
    opacity: 1;
}
.metalworld-header .dropdown:hover .dropdown-menu{
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.metalworld-header .dropdown .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: var(--nav-text);
    font-family: var(--con-font);
}
.metalworld-header .dropdown .dropdown-menu .dropdown-item:hover{
    background: #fff;
    color: var(--nav-text);
}
.metalworld-header .dropdown .dropdown-menu .dropdown-item.active{
    background: var(--primary-color);
    color: #fff;
}

/**====================================
Home 
====================================**/
.home-banner {
    position: relative;
    overflow: hidden;
    height: 800px;
}
.home-banner .banner-slider {
    height: 100%;
}
.home-banner .banner-slider .owl-item, .home-banner .banner-slider .owl-stage, .home-banner .banner-slider .owl-stage-outer {
    height: 100%;
}
.home-banner .sl-item {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
}
.home-banner .sl-item figure {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-blend-mode: luminosity;
    background: #052944;
    transform: scale(1);
    transition: all 6000ms linear;
    background-size: cover;
    z-index: 1;
}
.home-banner .sl-item figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78%;
}
.home-banner .sl-item figure:before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .45;
}
.home-banner .banner-cts {
    position: relative;
    padding: 60px 0;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}
.home-banner .sl-item .container {
    height: 100%;
}
.home-banner .banner-cts .title{
    position: relative;
    display: block;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
    z-index: 10;
}
.home-banner .banner-cts .text {
    position: relative;
    display: block;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
    z-index: 10;
}
.home-banner .active .banner-cts .title {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1200ms;
}
.home-banner .active .banner-cts .text {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1200ms;
}
.home-banner .banner-cts .btn-box {
    position: relative;
    display: block;
    margin-top: 40px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
    z-index: 10;
}
.home-banner .active .banner-cts .btn-box {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0);
    transition-delay: 1800ms;
}
.home-banner .banner-cts h1{
    color: #ffff;
    margin: 0 0 30px;
}
.home-banner .banner-cts p{
    font-size: 18px;
    color: #fff;
    font-weight: 200;
}
.quote-btn{
    border-radius: 4px;
    background: var(--second-color);
    font-size: 16px;
    font-family: var(--con-font);
    color: #fff;
    font-weight: 600;
    padding: 0 30px;
    height: 58px;
    transition: 0.5s ease all;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    touch-action: manipulation;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 4px;
}
.quote-btn.btn-sm{
    padding: 0 20px;
    height: 54px;
}
.quote-btn.btn-xs{
    padding: 0 20px;
    height: 48px;
    font-size: 16px;
}
.quote-btn.btn-blue{
    background: var(--primary-color);
}
.quote-btn i{
    font-size: 80%;
}
.quote-btn:hover{
    background: var(--primary-color);
    color: #fff;
    gap: 8px;
}
.quote-btn.btn-blue:hover{
    background: var(--second-color);
}

.home-contents{
    padding: 80px 0;
    background: #fff;
}
.sub-tag{
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    background: var(--second-color);
    margin: 0;
    padding: 0 15px;
    line-height: 28px;
}
.home-about-body h4{
    line-height: 1.4;
    margin: 20px 0;
}
.home-about-body h3{
    text-transform: uppercase;
    line-height: 1.4;
    margin: 20px 0;
}
.ha-img{
    position: relative;
}
.ha-img figure{
    display: block;
    width: 85%;
    margin-left: auto;
}
.ha-img figure img{
    display: block;
    width: 100%;
}
.ha-img .subimg{
    position: absolute;
    width: 55%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.light_bg{
    background: var(--light-bg);
}
.hpy-img figure{
    display: block;
    width: 100%;
    padding-right: 30px;
}
.hpy-img figure img{
    display: block;
    width: 100%;
}
p:empty{
    display: none;
}
.do-card .do-img{
    height: 250px;
    overflow: hidden;
}
.do-card .do-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.do-card h4{
    margin: 20px 0;
}
.hs-box{
    display: flex;
}
.hs-box .hs-icon{
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--second-color);
    margin-right: 22px;
    transition: 0.5s all;
}
.hs-box .hs-icon svg{
    display: block;
    max-width: 40px;
    max-height: 40px;
}
.hs-box .hs-icon svg path{
    fill: var(--second-color);
}
.hs-box .hs-icon svg#ercsvg path{
    stroke: var(--second-color);
    fill: none;
}
.hs-box .hs-contents h4{
    margin-bottom: 7px;
    text-transform: uppercase;
    transition: 0.5s all;
}
.hs-box .hs-contents p{
    margin-bottom: 0;
}
.hs-box:hover .hs-icon{
    background: var(--second-color);
}
.hs-box:hover .hs-icon svg path{
    fill: #fff;
}
.hs-box:hover .hs-icon svg#ercsvg path{
    stroke: #fff;
}
.hs-box:hover .hs-contents h4{
    color: var(--second-color);
}
.mb30 {
    margin-bottom: 30px;
}
.title-box{
    margin-bottom: 30px;
}
.title-box h2{
    text-transform: uppercase;
}
.homeservices-list{
    gap: 70px 0;
}
.title-box .sub-tag{
    margin-bottom: 10px;
}
.testimo-box{
    width: 90%;
    margin: 0 auto;
}
.testimo-box .testimo-contents{
    margin: 0 0 50px;
    padding: 40px 33px;
    position: relative;
    background: var(--light-bg);
}
.testimo-box .testimo-contents p{
    margin-bottom: 0;
    line-height: 1.684;
    font-size: 18px;
}
.testimo-box .testimo-contents:before{
    content: open-quote;
    display: block;
    font-size: 121px;
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: var(--second-color);
    position: absolute;
    line-height: 60px;
    left: 20px;
    opacity: 0.2;
}
.testimo-box .testimo-contents:after{
    content: close-quote;
    font-size: 0;
    display: block;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top: 20px solid var(--light-bg);
    border-bottom: 0;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.testimo-box .testimo-foot{
    text-align: center;
}
.testimo-box .testimo-foot span{
    display: block;
    font-size: 14px;
    margin-top: 5px;
    color: var(--text-gray);
}
.hometestimo-list .owl-dots{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.hometestimo-list .owl-dots .owl-dot span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-bg);
    display: block;
}
.hometestimo-list .owl-dots .owl-dot.active span{
    background: var(--primary-color);
}
.blog-box{
    display: flex;
    flex-direction: column;
    background: var(--light-bg);
}
.light_bg .blog-box{
    background: #fff;
}
.blog-img{
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.blog-box:hover .blog-img img{
    transform: scale(1.1);
}
.blog-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s all;
}
.blog-img .date{
    position: absolute;
    display: block;
    padding: 8px;
    background: var(--second-color);
    top: 12px;
    right: 12px;
    z-index: 100;
    text-align: center;
}
.blog-img .date .month{
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    color: #fff;
    line-height: 1;
}
.blog-img .date .day{
    display: block;
    font-size: 28px;
    font-family: var(--con-font);
    font-weight: bold;
    line-height: 1;
    color: #fff;
}
.blog-box .blog-contents{    
    padding: 25px 20px;
}
.blog-box .blog-contents h4{
    margin-bottom: 20px;
}
.blog-box .blog-contents .author{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-color);
}
.blog-box .blog-contents .author span{
    color: var(--primary-color);
}
.blog-box:hover{
    box-shadow: 8px 14px 20px 0px rgba(0, 0, 0, 0.1);
}
.partners-home-list{
	display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-home-list a,
.partners-slider a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.partners-home-list .plogoimg,
.partners-slider .plogoimg{
    border-radius: 3px;
    border: 1px solid rgba(244, 244, 244, 0.8);
    background: #ffffff;
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 100px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
}
.partners-home-list .plogoimg{
	width: calc(25% - 23px);
    margin: 0;
}
.partners-home-list .plogoimg img,
.partners-slider .plogoimg img{
    width: auto;
    display: inline-block;
    max-width: 75%;
    max-height: 100%;
    object-fit: contain;
}
main{
    padding-bottom: 75px;
}
.homecontact{
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.homecontact .ct-head h2{
    color: #fff;
}
.homecontact:before{
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.4;
}
.homecontact .container{
    position: relative;
    z-index: 2;
}
.cy-name{
	position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
} 

/* Inner Pages */
.inner-banner{
    height: 450px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.inner-banner::after{
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .5;
}
.inner-banner .banner-contents{
    position: relative;
    z-index: 1;
}
.inner-banner .banner-contents h1{
    color: #fff;
}
.inner-contents{
    padding: 80px 0;
}
.hainner-img figure{
    padding-right: 30px;
}
.hainner-img figure img{
    display: block;
    width: 100%;
}
.hainner-img figure{
    padding-right: 30px;
}
.hainner-img figure img{
    display: block;
    width: 100%;
}
.hainner-img-right figure img{
    display: block;
    width: 100%;
}
.leftct{
    padding-right: 30px;
}
.service-title-box{
    margin-bottom: 40px;
}
.service-title-box h3{
    color: var(--primary-color);
}
.services-box.hs-box .hs-contents h4{
    color: #000;
}
.services-box.hs-box .hs-icon{
    border-color: #000;
}
.services-box.hs-box .hs-icon svg path{
    fill: #000;
}
.services-box.hs-box .hs-icon svg#ercsvg path{
    stroke: #000;
}
.services-box.hs-box:hover .hs-icon{
    background: #000;
}
.services-box.hs-box:hover .hs-icon svg path{
    fill: #fff;
}
.services-box.hs-box:hover .hs-icon svg#ercsvg path{
    stroke: #fff;
}
.whatwe-do h3{
    line-height: 1.4;
    margin: 20px 0;
}
.whatdo-contents:nth-child(odd){
    background: var(--light-bg);
}
.whatdo-contents:nth-child(odd) .whatwe-do,
.whatdo-contents:nth-child(even) .hainner-img-right{
    padding-right: 30px;
}
.service-gallery{
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
}
.service-gallery li{
    width: 100%;
    max-width: calc((100% / 4) - 30px);
    position: relative;
}
.service-gallery li img{
    display: block;
    width: 100%;
}
.service-gallery li a{
    display: block;
    position: relative;
}
.service-gallery li a:after{
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: 0.5s all;
}
.service-gallery li a:hover:after{
    opacity: 0.5;
}
.contact-map{
    margin-bottom: -75px;
}
.contact-map iframe{
    width: 100%;
    height: 500px;
    display: block;
    margin: 0;
}
.formbox{
    padding: 30px;
    background: var(--light-bg);
}
.formbox .form-control {
    border: 1px solid rgba(244, 244, 244, 0.8);
    background: #ffffff;
    box-shadow: 1px 1.7px 2px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    height: 50px;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--text-color);
}
.formbox .form-control::placeholder{
    color: var(--text-gray);
}
.formbox .form-group{
    margin-bottom: 30px;
}
.formbox p{
    margin-bottom: 0;
}
.formbox textarea.form-control{
    height: auto;
    padding-top: 12px;
}
.formbox .wpcf7-not-valid-tip{
    font-size: 12px;
}
.contact-details{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    max-width: 400px;
    margin-left: auto;
    height: 100%;
}
.cdetails-info{
    border: 0;
    background: var(--second-color);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    border-radius: 4px;
}
.cdetails-info .infohead{
    margin-bottom: 30px;
}
.cdetails-info h3{
    color: #fff;
}
.cdetails-info i{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 90px;
    color: var(--second-color);
    color: #fff;
    opacity: .1;
}
.cdetails-info .infobody{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cdetails-info .infobody p{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}
.facility-card{
    padding: 30px;
    background: var(--light-bg);
    margin-top: 40px;
}
.facility-card .title-box{
    margin-bottom: 20px;
}
.facility-nlist ul{
    padding-left: 17px;
}
.facility-nlist li{
    font-size: 16px;
    color: var(--text-color);
    list-style: disc;
}
.facility-nlist li+li{
    margin-top: 4px;
}
.facility-gallery{
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
}
.facility-gallery li{
    width: 100%;
    max-width: calc((100% / 3) - 20px);
    position: relative;
}
.facility-gallery li .caption{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background: var(--primary-color);
    z-index: 5;
    color: #fff;
    display: block;
    font-size: 14px;
}
.facility-gallery li img{
    display: block;
    width: 100%;
}
.facility-gallery li a{
    display: block;
    position: relative;
}
.facility-gallery li a:after{
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: 0.5s all;
}
.facility-gallery li a:hover:after{
    opacity: 0.5;
}

/**====================================
Footer 
====================================**/
footer{
    background: #03153e;
    padding: 0;
}
.footer-contact{
    position: relative;
    top: -73px;
    display: flex;
}
.foot-cbox{
    width: 100%;
    max-width: 33.33333%;
    padding: 30px 40px;
    background: #f43231;
}
.foot-cbox:nth-child(2){
    background: #ff4544;
}
.foot-cbox:nth-child(3){
    background: #fd5554;
}
.fl-head{
    display: flex;
    color: #fff;
    font-size: 17px;
    align-items: center;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
}
.fl-head i{
    position: absolute;
    left: 0;
    top: 2px;
}
.fl-head h4{
    color: #fff;
    line-height: 1;
}
.fc-item,
.foot-cbox address{
    padding-left: 30px;
    font-size: 16px;
    color: #fff;
}
.fc-item a{
    color: #fff;
}
.fc-item a:hover{
    color: #fff;
    opacity: .8;
}
.footeritem .logo-footer img{
    display: block;
    max-width: 170px;
    margin-bottom: 30px;
}
.footeritem p{
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    max-width: 85%;
}
.footer-top{
    padding-bottom: 70px;
}
.footlinks h4{
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 30px;
    text-transform: uppercase;
}
.footlinks ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footlinks ul li a{
    font-size: 14px;
    color: #fff;
    line-height: 1;
    font-weight: 300;
}
.footlinks ul li a:hover{
    color: rgba(255, 255, 255, 0.5);
    margin-left: 5px;
}
.footer-bottom{
    padding: 35px 0;
    background: #020e28;
}
.footer-bottom p{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.33);
    line-height: 1.857;
    margin-bottom: 0;
}
.socialul li a{
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-align: center;
    background: var(--second-color);
    color: #fff;
    border-radius: 50%;
    transition: 0.5s ease all;
}
.footlinks .socialul li a:hover{
    background: var(--second-color);
    margin-left: 0;
    color: #fff;
    transform: scale(1.1);
}

/* Error */
.error-404 {
    height: 600px;
    padding: 80px 0;
    display: flex;
    align-items: center;
}
.error-404 .errorcts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.error-404 .errorcts i {
    display: block;
    text-align: center;
    font-size: 100px;
    margin-bottom: 20px;
}
.error-404 .errorcts h1 {
    color: var(--second-color);
    margin-bottom: 20px;
}

/**====================================
Responsive 
====================================**/
@media (max-width: 1399px){
    .nav-top-info{
        gap: 20px;
    }
    .home-banner{
        height: 700px;
    }
}
@media (max-width: 1199px){
    .metalworld-header .nav-top{
        padding: 15px 0;
    }
    .nav-menu .navbar-nav .nav-item .nav-link{
        padding-top: 14px;
        padding-bottom: 14px;
    }
    .nav-top-info .menu a{
        width: 44px;
        height: 44px;
    }
    .ntc-item h4{
        margin-bottom: 8px;
    }
    .metalworld-header .navbar-brand img{
        max-width: 160px;
    }
    h1{
        font-size: 48px;
    }
    h2{
        font-size: 36px;
    }
    h3{
        font-size: 24px;
    }
    h4{
        font-size: 18px;
    }
    .inner-banner{
        height: 400px;
    }
    .service-gallery li {
        max-width: calc((100% / 3) - 30px);
    }
    .homecontact .ct-head h2{
        font-size: 38px;
    }
	.error-404 .errorcts i {
        font-size: 70px;
    }
}
@media (max-width: 991px){
    p{
        font-size: 14px;
    }
    .home-banner .banner-cts h1{
        margin-bottom: 20px;
    }
    .home-banner .banner-cts .btn-box{
        margin-top: 20px;
    }
    .navbar-toggler{
        width: 30px;
        height: 22px;
        background-color: transparent;
        padding: 0;
        border: 0;
        box-shadow: none;
        position: relative;
        border-radius: 0;
        display: flex;  
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: none;
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
    .navbar-toggler span{
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        display: block;
        position: relative;
        transition: 0.5s all;
        transform-origin: center;
    }
    .navbar-toggler span:first-child {
        top: 10px;
    }
    .navbar-toggler span:last-child {
        bottom: 10px;
    }
    .navbar-toggler:not(.collapsed) span:first-child {
        rotate: 45deg;
        top: 2px;
    }
    .navbar-toggler:not(.collapsed) span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggler:not(.collapsed) span:last-child {
        rotate: -45deg;
        bottom: 2px;
    }
    .nav-top-info{
        display: none;
    }
    .home-banner{
        height: 500px;
    }
    .quote-btn{
        padding: 0 24px;
        height: 50px;
    }
    .home-contents{
        padding: 50px 0;
    }
    .metalworld-header .container,
    .container{
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .do-card h4{
        margin: 10px 0;
    }
    .do-card p{
        margin-bottom: 15px;
    }
    .homeblog-list,
    .whatdo-list{
        gap: 50px;
    }
    .foot-cbox{
        padding: 30px;
    }
    .fl-head i{
        font-size: 14px;
    }
    .fc-item, .foot-cbox address,
    .fl-head{
        padding-left: 25px;
    }
    .fc-item, .foot-cbox address{
        font-size: 14px;
    }
    .inner-banner {
        height: 350px;
    }
    h1 {
        font-size: 40px;
    }
    .nav-menu{
        background: #fff;
    }
    .navbar-collapse{
        position: fixed;
        top: 0;
        bottom: 0;
        height: 100% !important;
        right: 0;
        width: 100%;
        display: block !important;
        background: #fff;
        z-index: 998;
        padding-top: 130px;
        padding-bottom: 30px;
        box-shadow: -4px 0px 9px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: 0.5s all;
    }
    .navbar-collapse.show{
        transform: translateX(0);
    }
    .metalworld-header .nav-top{
        position: relative;
        z-index: 999;
    }
    .nav-menu .navbar-nav{
        height: 100%;
        overflow: auto;
    }
    .metalworld-header .dropdown:hover .dropdown-menu{
        visibility: visible;
        opacity: 1;
        top: 0;
        position: relative;
    }
    .metalworld-header .dropdown .dropdown-menu{
        visibility: visible;
        opacity: 1;
        top: 0;
        position: relative;
        display: none;
        border-radius: 0 0 4px 4px;
        background: var(--primary-color);
        margin-top: -3px;
    }
    .metalworld-header .dropdown .dropdown-menu::before{
        border-bottom-color: var(--primary-color);
    }
    .metalworld-header .dropdown .dropdown-menu.show{
        display: block;
    }
    .metalworld-header .dropdown .dropdown-menu .dropdown-item{
        text-align: center;
        font-size: 15px;
        color: #fff;
    }
    .metalworld-header .dropdown .dropdown-menu .dropdown-item.active {
        background: var(--second-color);
        color: #fff;
    }
    .metalworld-header .dropdown .dropdown-menu::before{
        left: 50%;
        transform: translateX(-50%);
    }    
    .metalworld-header .dropdown span.drop{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 16px;
        height: 16px;
        top: 15px;
        right: 20px;
    }
    .metalworld-header .dropdown span.drop:after{
        content: '';
        width: 8px;
        height: 8px;
        border: 2px solid var(--nav-text);
        rotate: 45deg;
        border-top: 0;
        border-left: 0;
        display: inline-block;
        vertical-align: 8px;
        transition: 0.5s all;
    }
    .metalworld-header .dropdown .dropdown-toggle::after{
        display: none;
    }
    .metalworld-header .dropdown span.drop.show{
        top: 19px;
    }
    .metalworld-header .dropdown span.drop.show:after{
        rotate: -135deg;
    }
    .nav-menu .navbar-nav .nav-item .nav-link{
        font-size: 16px;
        border: 1px solid var(--light-bg);
        border-radius: 4px;
        padding: 15px 20px;
    }
    .nav-menu .navbar-nav .nav-item .nav-link.active{
        border-color: var(--primary-color);
    }
    .nav-menu .navbar-nav {
        gap: 8px;
        padding: 0 20px;
    }
    .homecontact{
        height: auto;
    }
    .homecontact .ct-head h2 {
        font-size: 36px;
    }
    .facility-card{
        margin-top: 30px;
    }
    .facility-gallery li{
        max-width: calc((100% / 2) - 20px);
    }
	.error-404 .errorcts i {
        font-size: 50px;
    }
	.error-404 {
        height: 500px;
    }
}
@media (max-width: 767px){
    .hpy-img,
    .ha-img{
        margin-bottom: 30px;
    }
    .quote-btn.btn-sm {
        padding: 0 16px;
        height: 44px;
        font-size: 14px;
    }
    p{
        margin-bottom: 15px;
    }
    .homeservices-list {
        gap: 50px 0;
    }
	.home-banner .owl-nav{
		position: absolute;
		right: 0;
		bottom: 0;
		padding: 0 30px 20px;
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.home-banner .owl-nav button{
		width: 44px;
		height: 44px;
		background: var(--primary-color) !important;
        color: #fff !important;
	}
    .inner-contents {
        padding: 50px 0;
    }
    .testimo-box .testimo-contents{
        padding: 30px;
    }
    .testimo-box .testimo-contents p{
        font-size: 16px;
    }
    .testimo-box .testimo-contents:before{
        font-size: 100px;
    }
    .footlinks h4{
        margin-bottom: 15px;
    }
    .footer-contact{
        flex-direction: column;
    }
    .foot-cbox{
        max-width: 100%;
    }
    .footlinks{
        margin-top: 50px;
    }
    .hpy-img figure{
        padding-right: 0;
    }
    .quote-btn.btn-xs {
        padding: 0 14px;
        height: 40px;
        font-size: 13px;
    }
    .sub-tag{
        font-size: 14px;
    }
    .partners-slider .plogoimg{
        height: 60px;
    }
    .partners-slider .plogoimg img{
        max-width: 80%;
        max-height: 80%;
    }
    .footlinks ul.socialul{
        flex-direction: row;
        align-items: center;
    }
    .home-banner .banner-cts p{
        font-size: 16px;
    }
    .footer-top {
        padding-bottom: 50px;
    }
    .footer-bottom{
        padding: 20px 0;
    }
    .footeritem p{
        max-width: 100%;
    }
    .footeritem .logo-footer img{
        max-width: 150px;
    }
    .home-banner .banner-cts{
        padding: 40px 0;
    }
    .inner-banner {
        height: 250px;
        padding-bottom: 30px;
    }
    .leftct {
        padding-right: 0;
    }
    .hainner-img,
    .hainner-img-right{
        margin-bottom: 30px;
    }
    .home-about-body h4{
        margin-bottom: 10px;
    }
    .service-gallery{
        gap: 20px;
    }
    .service-gallery li {
        max-width: calc((100% / 2) - 20px);
    }
    .homecontact .ct-head h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .contact-details{
        margin-top: 30px;
        max-width: 100%;
        gap: 20px;
        justify-content: flex-start;
    }
    .cdetails-info .infohead {
        margin-bottom: 20px;
    }
    .contact-map iframe{
        height: 400px;
    }
	.partners-home-list{
		gap: 20px;
	}
}
@media (max-width: 575px){
	.home-banner{
        height: 470px;
    }
    .homeservices-list {
        gap: 30px 0;
    }
    .hs-box .hs-icon{
        width: 70px;
        height: 70px;
    }
    .quote-btn{
        font-size: 14px;
    }
    h1{
        font-size: 36px;
        line-height: 1;
    }
    h2{
        font-size: 30px;
    }
    h3{
        font-size: 22px;
    }
    h4{
        font-size: 16px;
    }
    .sub-tag{
        font-size: 12px;
    }
    .home-banner .banner-cts p{
        font-size: 14px;
    }
    .homecontact .ct-head h2 {
        font-size: 26px;
    }
    .formbox{
        padding: 20px;
    }
    .formbox .form-group{
        margin-bottom: 20px;
    }
    .cdetails-info{
        padding: 20px;
    }
    .cdetails-info i{
        font-size: 80px;
    }
    .facility-card{
        padding: 20px;
    }
    .facility-nlist li{
        font-size: 14px;
    }
    .facility-gallery li{
        max-width: 100%;
    }
	.error-404 .errorcts i {
        font-size: 40px;
    }
	.error-404 {
        height: auto;
    }
	
	.partners-home-list{
		gap: 25px;
	}
	.partners-home-list .plogoimg {
    	width: calc(33.3334% - 17px);
	}
}

@media (max-width: 480px){
	.partners-home-list .plogoimg {
		width: calc(50% - 13px);
	}
}