@font-face {
    font-family: 'Barlow-SemiBold';
    font-style: normal;
    font-display: swap;
    src: url(../font/Barlow/Barlow-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Barlow-Regular';
    font-style: normal;
    font-display: swap;
    src: url(../font/Barlow/Barlow-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Barlow-ExtraBold';
    font-style: normal;
    font-display: swap;
    src: url(../font/Barlow/Barlow-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Barlow-Bold';
    font-style: normal;
    font-display: swap;
    src: url(../font/Barlow/Barlow-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Barlow-Medium';
    font-style: normal;
    font-display: swap;
    src: url(../font/Barlow/Barlow-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Barlow-light';
    font-style: normal;
    font-display: swap;
    src: url(../font/Barlow/Barlow-Light.ttf) format('truetype');
}

/*  */

@font-face {
    font-family: 'Oswald-Bold';
    font-style: normal;
    font-display: swap;
    src: url(../font/Oswald/Oswald-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Oswald-SemiBold';
    font-style: normal;
    font-display: swap;
    src: url(../font/Oswald/Oswald-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Oswald-Medium';
    font-style: normal;
    font-display: swap;
    src: url(../font/Oswald/Oswald-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Oswald-Regular';
    font-style: normal;
    font-display: swap;
    src: url(../font/Oswald/Oswald-Regular.ttf) format('truetype');
}

/* ****************** */

 
html {
    min-height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    --themeColor: #EB612A;
    --themeSecColor: #031e47;
    --headingFontcolor: #EB612A;
    --fontColor: #333333;
    --bannerFont: 'Oswald-SemiBold';
    --headingFont: 'Oswald-Regular';
    --headingFontSize: 46px;
    --headingLineheight: 57px;
    --menuFont: 'Barlow-Bold';
    --bodyFont: 'Barlow-Regular';
    --ButtonFont: 'Barlow-SemiBold';
    --paraFontsize: 18px;
    --paraFontWeight: 30px;
    --paraFontLineheight: 32px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

body {
    font-family: var(--fontColor);
}

html,
body {
    overflow-x: hidden;
}

.mt-20 {
    margin-top: 20px;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: unset;
}

.bg-grey {
    background: #f2f2f2;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
}

p,
ul,
ol,
address,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a,
a:active,
a:focus,
button,
button:focus,
button:active,
.btn,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
    outline: none;
    outline: 0;
}

li, p {
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-weight: var(--paraFontWeight);
    color: #434343;
    font-family: var(--bodyFont);
}

a:hover,
a {
    text-decoration: none;
}

.form-control:focus {
    background-color: transparent;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
    border: 0;
    border-bottom: 1px solid #FFA783;
}

li {
    list-style: none;
}


@-webkit-keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    80% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    100% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }
}

@keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    80% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    100% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }
}

header.site-header.navbar-fixed {
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    background: #fff;
    padding: 0 0;
    box-shadow: 0 1.1875rem 2.375rem rgb(0 0 0 / 0%), 0 0.9375rem 0.75rem rgb(0 0 0 / 6%);
}

header.site-header .inner-Logo {
    display: none;
}

header.site-header.navbar-fixed .inner-whiteLogo {
    display: none;
}

header.site-header.navbar-fixed .inner-Logo {
    display: block;
}

header.site-header {
    position: absolute;
    z-index: 2;
    /* padding: 1.5rem 0; */
    width: 100%;
}

header.site-header.sticky .whiteLogo {
    display: none;
}

.menuWrap .dropdownMain i {
    font-size: 13px;
}

header.site-header.sticky .blackLogo {
    display: block;
}

header.site-header.navbar-fixed .logobox {
    padding-bottom: 0px;
}

.dropdownMain .dropbtn.active, .navbarMain a.active {
    color: var(--themeColor);
    position: relative;
    border-bottom: 2px solid #eb612a;
}

header.site-header.navbar-fixed .navbarMain a.active{
    color: var(--themeColor);
    /* font-weight: 600; */
    position: relative;
    border-bottom: 2px solid #eb612a;
}

.menuWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 10px 0 10px;
    justify-content: space-between;
}

.menuListing.sub-menus ul li a {
    color: #000;
}

.menuListing.sub-menus {
    padding-left: 0;
    /* border-left: 1px solid var(--themeSecondColor);
    padding-bottom: 20px; */
}

.menuListing.sub-menus ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    /* margin: 20px; */
    /* border: 2px solid #d94d15; */
    padding: 10px;
    background: #fff;
}

.menuListing.sub-menus ul li {
    flex: 0 0 32.5%;
    /* margin: 0; */
    /* padding: 0; */
    /* margin: 0; */
    position: relative;
}

.menuListing.sub-menus ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 28%;
    bottom: 0;
    left: 0;
    background: #1a1a1a69;
}

.menuListing.sub-menus ul li a {
    color: #333333;
    padding: 20px 0 !important;
    border-bottom: 1px solid var(--themeSecondColor);
    width: 100%;
    /* text-align: left; */
}
.navbarMain .menuListing.sub-menus ul li a h3{
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-family: var(--headingFont);
}

.menuListing.sub-menus ul li img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.menuListing.sub-menus ul li .menu-prod-list-sub a {
    padding: 20px 0 0px !important;
    font-family: var(--bodyFont);
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    letter-spacing: 0.8px;
}

.menuListing.sub-menus ul li .menu-prod-list-sub a:hover{
    letter-spacing: 1.8px;
}

.menuListing.sub-menus ul li .menu-prod-list-sub a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #fff;
    transition: width 0.3s ease;
}

.menuListing.sub-menus ul li .menu-prod-list-sub a:hover::after {
  width: 100%;
}

.menuheading.menu-img img {
    width: 100%;
}

.menuheading.menu-img {
    padding: 0;
}

.dropDownInnerMnb,
.navbarMain ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* margin-bottom: -25px; */
    /* border-top: 1px solid #D0D0D0; */
    /* margin-top: 20px; */
}

.innerheader .dropdownMain .dropbtn, 
.innerheader .navbarMain a, 
.navbarMain a:hover,
.navbarMain ul li:hover a {
    /* color: var(--themeColor); */
    font-family: var(--menuFont);
}

.navbarMain .menuListing.sub-menus ul li:hover a {
    color: #333333;
}

.navbarMain .menuListing.sub-menus ul li a{
    color: #333333;
    margin: 0;
    padding: 0 !important;
}
.menuListing.sub-menus ul li h3 a{
    font-size: 20px;
    font-family: var(--menuFont);
    border-bottom: 1px solid #ffffff61;
}

.navbarend {
    display: flex;
    justify-content: end;
    align-items: center;
}


.navbarend ul li a.borde-style{
    border-left: 1px solid var(--fontColor);
}

.navbarMain a.concync-button {
    border-radius: 50px;
    background: #5D737F;
    width: 113px;
    padding: 5px 10px;
    color: #FFF;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.navbarMain a.concync-button span{
    margin-left: 5px;
}

.dropdownMain {
    float: left;
    overflow: hidden;
}

.dropdownMain-content .header {
    padding: 1rem;
    color: #111;
}

.logobox a,
.logobox a img {
    width: 100%;
}

header.site-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1.1875rem 2.375rem rgb(0 0 0 / 0%), 0 0.9375rem 0.75rem rgb(0 0 0 / 6%);
    animation: 15s infinite gradient;
    z-index: 999;
    padding: 0.625rem 0;
    transition: 0.3s ease-in-out;
}

header.site-header.sticky .dropdownMain .dropbtn,
header.site-header.sticky .navbarMain a {
    color: #585858;
    font-weight: 500;
}

.navbarMain a,
.dropdownMain .dropbtn {
    transition: 0.2s;
}

.dropdownMain .dropbtn,
.navbarMain a {
    color: #000;
    position: relative;
    transition: 0.2s;
    text-decoration: none;
}

.menuListing ul {
    display: block;
    padding: 0;
}

.dropdownMain .dropbtn {
    border: none;
    outline: none;
    background-color: transparent;
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    font-family: var(--menuFont);
    text-transform: uppercase;
}

header.site-header.navbar-fixed .dropdownMain .dropbtn,
header.site-header.navbar-fixed .navbarMain a {
    color: #000;
}

header.site-header.navbar-fixed .dropdownMain .dropbtn,
header.site-header.navbar-fixed .navbarMain a.menu-button{
    color: #000;
}

header.site-header.navbar-fixed .dropdownMain .dropbtn:hover,
header.site-header.navbar-fixed .navbarMain a:hover {
    color: #000;
}

header.site-header.navbar-fixed {
    top: -10.5rem;
}

#myHeader.hide {
    top: 0rem;
}

#myHeader {
    width: 100%;
    z-index: 100;
    transition: all .3s ease;
}

.dropdownMain-content {
    display: none;
    position: absolute;
    /* background-color: var(--themeColor); */
    background: #F9F9F9;
    width: 60%;
    -webkit-box-shadow: 0px 20px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 20px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 12;
    top: 62%;
    right: 0;
}

header.site-header.navbar-fixed .dropdownMain-content {
    top: 62%;
}

.dropdownMain:hover .dropdownMain-content {
    display: block;
    /* padding: 35px 5%; */
}

.dropdown_menu-mega {
    -webkit-animation: growDown 500ms ease-in-out forwards;
    animation: growDown 500ms ease-in-out forwards;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
}

.navbarMain ul li:last-child a{
    padding-right: 0;
    margin-right: 0;
}

.logobox {
    width: auto;
}

.navbarMain a {
    font-family: var(--menuFont);
    float: left;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    padding: 20px 0px;
    margin: 0 20px;
}

.navbarMain a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -2px;
    background: var(--fontColor);
    transition: width 0.3s ease;
}

.navbarMain a:hover::after {
  width: 100%;
}

.navbarMain ul li:nth-last-child(1) {
    padding-right: 0;
}
.navbarMain .menuListing a:after,
.onlyMobile,
header.site-header.sticky .whiteLogo {
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 12;
    top: 0;
    right: 0;
    background: #fff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.topNav-Upper {
    padding-top: 4px;
    margin-bottom: 18px;
}
.topNav-Upper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    border-top: 0px solid #D0D0D0;
}
ul.top-header li a {
    color: #050908;
    font-size: 16px;
    font-family: 'Barlow-Regular';
    display: flex;
    align-items: center;
    padding: 7px 15px;
}

.sidenav,
body,
html {
    overflow-x: hidden;
}

.bg-green {
    background: var(--themeColor);
}

.bg-grey {
    background: #f2f2f2;
}


.inter-text-para h1 {
    font-size: var(--headingFontSize);
    font-weight: var(--headingFontWeight);
    line-height: var(--headingLineheight);
}

.inter-text-para p {
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-family: var(--bodyFont);
    color: var(--fontColor);
    margin-bottom: 20px;
}


.btn-read-more.btn-white a {
    color: #fff;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 5px 5px;
    font-size: 17px;
    font-weight: 700;
    float: left;
    margin-top: 39px;
    letter-spacing: 1px;
    transition: 0.5s;
}

.btn-read-more.btn-white a:hover {
    letter-spacing: 3px;
}

.btn-read-more.btn-white a:hover i {
    margin-left: 5px;
}

.color-greay{
    color: #747474 !important;
}

.btn-read-more.btn-white span {
    color: #fff;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 5px 5px;
    font-size: 17px;
    font-weight: 700;
    float: left;
    margin-top: 39px;
    letter-spacing: 1px;
    transition: 0.5s;
}

.btn-read-more.btn-white span:hover {
    letter-spacing: 3px;
}

.btn-read-more.btn-white span:hover i {
    margin-left: 5px;
}

.menuheading p {
    font-weight: var(--paraFontWeight);
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
}

.menu-prodsecList {
    float: left;
    width: 100%;
    margin-top: 44px;
}

.menu-prodsecList.brand-prod {
    float: left;
    width: 100%;
    margin-top: 25px;
}

.menu-prodsecList span {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    margin-top: 11px;
    color: #111;
}

.accordion-button::after {
   background-image: url(../images/forom-arrow.png);
    transform: scale(.7) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/forom-arrowup.png);
}

img.top-texture {
    position: absolute;
    left: 0;
    top: 0;
    width: 15%;
}

img.bottom-texture {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 22%;
}

.bannerPage .thumbNav {
    position: absolute;
    bottom: 35px;
    left: 0;
    z-index: 99999;
    right: 0;
}

.bannerPage .thumbNailCust {
    position: relative;
}

.container.container custom-container {
    max-width: 1620px;
}


/* end-menu */

/* button */
.btnread-moreread button img {
    margin-right: 12px;
}

/* .btnread-moreread  button:hover{
    animation: pulse 1s forwards;
    transition: .3s;
} */

.btnread-moreread.text-align-right {
    text-align: right;
}

.sec-resume .btnread-moreread button{
    margin: 0 0 0 auto;
}
/* end */

/* footer */

.sec-footer {
     background: #031e47;
    /* background: #71280B;
    background: linear-gradient(90deg,rgba(113, 40, 11, 1) 10%, rgba(212, 75, 20, 1) 51%, rgba(113, 40, 11, 1) 100%); */
    padding-bottom: 50px;
    padding-top: 80px;
}
/* .sec-footer::after {
    content: '';
    position: absolute;
    top: -60px;
    right: 0;
    width: 1083px;
    height: 100px;
    background: #EFEFEF;
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 8% 100%);
} */

.bg-footer{
    position: absolute;
    width: 50%;
    left: 0;
    bottom: 2px;
    opacity: 1;
    overflow: hidden;
    height: 450px;
    object-fit: cover;
}

.foot-logo p {
    color: #ffffff;
    margin-top: 25px;
}

.quick-list a {
    float: left;
    width: 100%;
    width: 100%;
    color: #ffffff;
    margin-top: 15px;
    font-family: var(--bodyFont);
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
}

.quick-list h3, .contact-list h3 {
    font-family: 'Heebo-Medium';
    font-size: 22px;
    margin-bottom: 20px;
}

.cont-info a {
    font-family: var(--bodyFont);
    font-size: var(--paraFontsize);
    line-height: 30px;
    color: #ffffffe3;
    width: 85%;
}

.foot-border {
    border-top: 1px solid #ffffff52;
    border-bottom: 1px solid #ffffff52;
    margin-top: 50px;
}

.cont-info a span.call-no {
    font-size: 18px;
    line-height: 30px;
    font-family: var(--bodyFont);
}

.cont-info a span.call-no.callweight{
    font-family: 'Barlow-Bold';
}

.cont-info a span.mapstyle{
    text-decoration: underline;
    font-size: 16px;
}

/* .cont-info a span{
    font-family: var(--bodyFont);
    font-size: var(--paraFontsize);
    line-height: 30px;
} */

.cont-info a h5{
    font-family: 'Oswald-SemiBold';
    font-size: 20px;
    line-height: 32px;
}

.contact-list h3 {
    margin-bottom: 35px;
}

.cont-info {
    display: flex;
    margin-top: 20px;
    align-items: start;
    justify-content: start;
}

.all-cont-info a {
    float: left;
    width: 50%;
    color: #ffffff;
    margin-bottom: 13px;
    position: relative;
}
.cont-info label {
    color: #ffffff;
}

.all-cont-info a span {
    font-family: var(--bodyFont);
    font-size: 20px;
    line-height: var(--paraFontLineheight);
}

.cont-icon {
    margin-top: 8px;
}

.cont-info img{
    margin-right: 20px;
}

.contact-list {
    padding: 0;
    position: relative;
}

.foot-logo img{
    width: 125px;
    margin-bottom: 30px;
}

.socialLinks a i {
    background: var(--themeSecColor);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 50%;
    color: #000;
}

.quick-list.social-list a {
    float: none;
    margin-right: 10px;
}

.footer-factory-list ul {
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    /* margin-left: 50px; */
}

.social-iconsbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 170px;
}

.footer-factory-list ul li{
    flex: 0 0 24%;
    transition: 0.5s all ease-in-out;
    overflow: hidden;
    padding: 0 15px;
}

.footer-factory-list ul li .contact-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-factory-list ul li .contact-list a{
    width: 100% !important;
    font-family: 'Barlow-Regular';
    font-size: 16px;
    color: #FFFFFF;
    line-height: 28px;
    margin-bottom: 15px;
}
.contact-list h5 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 1px solid #ffffff57;
    line-height: 40px;
    font-family: var(--headingFont);
}
.all-links{
    margin-top: 20px;
}

.all-links h4{
    color: #ffffff;
    font-size: 18px;
    font-family: var(--headingFont);
    margin-bottom: 20px;
}
.socical-media a {
    margin-right: 5px;
}



.footer-factory-list ul li .cont-info i {
    width: 25px;
    height: 25px;
    line-height: 26px;
    font-size: 12px;
    margin-right: 15px;
}

.footer-factory-list ul li .cont-info a {
    width: 90%;
}

.footer-factory-list ul li .contact-list {
    padding: 0;
}

.footer-factory-list ul li .cont-info {
    margin-top: 0px;
    margin-bottom: 12px;
}

.footer-factory-list ul li .cont-info a{
    color: #ffffff;
}
.ft-copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-family: 'Barlow-Regular';
    padding: 0;
}


.copyright-info {
    text-align: center;
    padding: 15px 0;
    background: #1b355d;
}

.copyright-info a {
    color: #a5a5a5;
    padding: 0 5px;
    font-size: 15px;
    font-family: 'Barlow-Regular';
}

.copyright-info a i {
    background: #1b355d;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 50%;
    color: #fff;
}

.copyright-policy a{
    border-right: 1px solid #ffffff52;
    /* border-left: 1px solid #fff; */

}
.copyright-info a:last-child {
    border-right: 0;
}

ul.social-media {
    display: flex;
    justify-content: left;
    margin: 0;
    padding: 40px 0 0;
}

ul.social-media li a {
    padding: 0px 8px;
    color: #fff;
    font-family: "Prata", serif;
    font-weight: 400;
    font-size: 26px;
}

ul.social-media li a i {
    background: #F25729;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 50%;
    color: #000;
}

.cont-info i {
    background: #F25729;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    border-radius: 50%;
    color: #000;
    margin-right: 15px;
}

.bottm-bordr{
    position: relative;
}

.bottm-bordr::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    left: 0;
    bottom: -15px;
    background-image: url(../images/footerlogo-line.png);
    background-repeat: no-repeat;
}


.form-careers{
    margin-top: 30px;
}

.contact-sec input[type="text"], 
.contact-sec input[type="email"], 
.contact-sec input[type="tel"], 
/* .contact-sec input[type="file"],  */
.contact-sec select, 
.contact-sec textarea {
    border-radius: 0;
    outline: none;
    color: #333333;
    box-shadow: none;
    padding: 0px;
    font-size: 18px;
    line-height: 50px;
    font-family: var(--bodyFont);
    position: relative;
    background: transparent;
    border: 0;
}

.careersecSix{
    border: 0 !important;
    border-radius: 7px !important;
    outline: none;
    color: #111;
    box-shadow: none;
    padding: 0px 12px;
    font-size: 18px;
    line-height: 50px;
    font-family: var(--bodyFont);
    position: relative;
    text-align: left;
    width: 100%;
        background: transparent;
}

.upload-wrapper {
    margin: 40px;
    font-family: Arial, sans-serif;
}
.file-input {
    position: absolute;
    opacity: 0;
}

.custom-upload-label {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.custom-upload-label i {
    margin-right: 6px;
}

.form-control[type=file]:not(:disabled):not([readonly]) + label {
    cursor: pointer;
}

.contact-sec {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #475c7b;
}
/*  */

.contact-sec textarea {
    height: 150px;
}

.contact-sec select {
  appearance: none;          
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/forom-arrow.png) no-repeat right 10px center;
  background-size: 16px;
  padding-right: 30px;  
  background-color: transparent;
}


input[type="file"]::file-selector-button {
  background-color: transparent;
  color: #333333;            
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
  background-color: #3e9a04; /* Darker green on hover */
}

.sec-submit .btn-read-more a {
    color: #333333;
}

.form-group.contact-sec input::placeholder{
    color: #333333;
}

.form-group.contact-sec textarea::placeholder{
    color: #333333;
}

.form-group.contact-sec {
    margin-bottom: 30px;
}


.form-group.contact-sec.pacecolor input::placeholder{
    color: #ffffff !important;
}

.form-group.contact-sec.pacecolor textarea::placeholder{
    color: #ffffff !important;
}


/*  */

.sec-contact .contact-sec input[type="text"], 
.sec-contact .contact-sec input[type="email"], 
.sec-contact .contact-sec input[type="tel"], 
.sec-contact .contact-sec input[type="file"], 
.sec-contact .contact-sec select, 
.sec-contact .contact-sec textarea {
    outline: none;
    color: #ffffff;
    background: transparent;
    box-shadow: none;
    padding: 0px;
    font-size: 17px;
    line-height: 50px;
    font-family: var(--bodyFont);
    position: relative;
}

.sec-contact .contact-sec textarea {
    height: 150px;
}




@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}
@media (min-width: 1601px) and (max-width: 2000px){
    .container.custom-container {
        max-width: 1455px;
        padding: 0;
    }
}



@media (min-width: 1400px) and (max-width: 1600px) {
    .container.custom-container {
        max-width: 1320px;
    }

    .bannerPage .thumbNav .swiper-wrapper {
        justify-content: space-between;
    }
    .bannertext-Wrap {
        position: absolute;
        top: 15%;
        width: 42%;
    }
    
    .bannertext-Wrap h1 {
        font-size: 60px;
        line-height: 80px;
        letter-spacing: 1.5px;
    }
    ul.banner-location {
        margin: 30px 0;
    }
    .btn-read-more a, .btn-read-more button {
        font-size: 14px;
        line-height: 22px;
    }
    .products-detels h5 {
        font-size: 17px;
        line-height: 30px;
    }
    ul.upper-ft li a {
        padding: 0 18px;
        font-size: 17px;
        line-height: 28px;
    }
    .foot-logo {
        padding-right: 70px;
    }

    .sec-footer::after {
        width: 720px;
        height: 100px;
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 10% 100%);
    }
    .dropdownMain-content {
        width: 68%;
        top: 62%;
        right: 0;
    }
}
@media (min-width: 1300px) and (max-width: 1399px) {
    .container.custom-container {
        max-width: 1290px;
    }
    .foot-logo {
        padding-right: 50px;
    }

    .sec-footer::after {
        width: 720px;
        height: 100px;
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 10% 100%);
    }
   
}

@media (min-width: 1200px) and (max-width: 1299px) {
    .container.custom-container {
        max-width: 1140px;
    }
    .cont-info a {
        font-size: 16px;
        line-height: 28px;
    }
    .cont-info a span.call-no {
        font-size: 16px;
        line-height: 28px;
    }
    .social-iconsbox {
        width: 140px;
    }
    .copyright-info a {
        font-size: 12px;
    }
    .sec-footer::after {
        width: 720px;
        height: 100px;
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 10% 100%);
    }
}


@media (min-width: 1025px) and (max-width: 1199px) {
    .container.custom-container {
        max-width: 1100px;
    }
    .cont-info a {
        font-size: 16px;
        line-height: 28px;
    }
    .cont-info a span.call-no {
        font-size: 16px;
        line-height: 28px;
    }
    .social-iconsbox {
        width: 140px;
    }
    .copyright-info a {
        font-size: 12px;
    }
    .sec-footer::after {
        width: 720px;
        height: 100px;
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 10% 100%);
    }
    
}


@media (max-width: 1024px) {
    .container.custom-container {
        max-width: 960px;
    }
    .onlyMobile {
        display: block;
    }

    .navbarMain.onlyDesktop {
        display: none;
    }

    .mobileBoxLogo.InsideSideBar {
        padding: 30px 16px 0;
        float: left;
        width: 100%;
    }

    a.closebtn {
        position: absolute;
        right: 37px;
        top: 0px;
        z-index: 999;
        width: 50px;
    }

    .dropdown-btn,
    .sidenav a {
        text-decoration: none;
        color: var(--fontColor);
        padding: 8px 11px;
        width: 100%;
        float: left;
        font-size: var(--paraFontsize);
    }

    .mobmenuList ul li.accordion-item:nth-last-child(1) {
        border: 0;
        border-bottom: 0px solid var(--themeSecondColor);
    }

    .logobox {
        padding-bottom: 0px;
    }

    a.closebtn {
        right: 0;
        top: 24px;
        width: 50px;
    }

    header.site-header.navbar-fixed .menuWrap {
        padding: 16px 0;
    }

    .mobmenuList ul {
        padding: 0 16px;

    }

    .mobmenuList .accordion {
        float: left;
        width: 100%;
    }
    .mobmenuList .accordion .accordion-body {
        float: left;
        padding: 16px;
        width: 100%;
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        background: #f2f2f2 !important;
        padding: 11px !important;
    }

    .mobileBoxLogo.InsideSideBar {
        padding: .875rem 1rem 2rem;
        float: left;
        width: 100%;
    }

    .navbarMain .menuListing a:after, .onlyMobile, header.site-header.sticky .whiteLogo {
        display: block;
    }

    header.site-header {
        padding: 0;
    }

    a.closebtn {
        position: absolute;
        right: 37px;
        top: 0rem;
        z-index: 999;
        width: 3.125rem;
    }

    .dropdown-btn,
    .sidenav a {
        text-decoration: none;
        color: #eb622b;
        padding: 10px 0;
        width: 100%;
        float: left;
        font-family: var(--bodyFont);
        text-transform: uppercase;
    }

    .logobox a,
    .logobox a img {
        width: 100%;
    }

    .logobox {
        padding-bottom: 0px;
        margin: 0;
    }

    a.closebtn {
        right: 0;
        top: 1.5rem;
        width: 3.125rem;
        color: #111;
    }

    header.site-header.navbar-fixed .menuWrap {
        padding: 1rem 2%;
    }

    .mobmenuList ul {
        padding: 0 1rem;

    }

    .mobmenuList .accordion {
        float: left;
        width: 100%;
    }

    .mobmenuList .accordion .accordion-body {
        float: left;
        padding: 0.5rem 1rem;
        width: 100%;
        background: #eeeeee42;
    }

    .mobmenuList .accordion .accordion-item {
        border: 0;
        position: relative;
        float: left;
        width: 100%;
        font-weight: normal;
        font-size: 18px;
        background: transparent;
        margin-bottom: 10px;
        padding: 10px 0px;
        border-bottom: 1px solid #333;
    }
    
    .mobmenuList .accordion .accordion-item .accordion-button {
        font-size: 18px;
        line-height: 30px;
        padding: 0;
        width: 100%;
        float: left;
        font-family: var(--bodyFont);
        background: transparent;
        text-transform: uppercase;
        color: #eb622b;
        font-family: var(--menuFont);
    }

    .mobmenuList .accordion .accordion-button:focus {
        z-index: 3;
        border-color: inherit;
        outline: 0;
        box-shadow: none;
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: initial;
        box-shadow: none;
        font-weight: normal;
        font-size: 18px;
        padding: 11px 0 !important;
    }
    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        color: #eb622b;
        font-family: var(--menuFont);
        box-shadow: none;
        font-size: 18px;
        background: transparent !important;
    }

    ul.menuprodlist-items li a {
        padding: 5px 0;
        float: left;
        width: 100%;
        font-weight: normal;
        font-size: 18px;
    }

    .mobileBoxLogo.InsideSideBar img {
        width: 155px;
        height: auto;
    }
    .inner-sec {
        float: left;
        width: 100%;
        margin-bottom: 30px;
        background: #f2f2f2;
    }

    .inner-sec h4 {
        color: #ffffff;
        background: var(--themeColor);
        float: left;
        width: 100%;
        padding: 9px;
        font-size: 18px;
    }
    .inner-sec ul.menuprodlist-items {
        padding: 1rem;
        float: left;
        width: 100%;
    }
    .mobmenuList.accordion ul li a {
        margin-bottom: 10px;
        font-family: var(--menuFont);
        border-bottom: 1px solid #333;
    }


    .mobmenuList.accordion ul li .subMenuList.othersSubmenu a {
        font-size: 16px;
        background: #0f3a7200;
        border-bottom: 1px solid #eb612a30;
        text-transform: uppercase;
        color: #333333;
        margin-bottom: 0;
        font-family: var(--menuFont);
        display: flex;
        align-items: center;
    }
    
    .mobmenuList.accordion ul li .subMenuList.othersSubmenu a i{
        font-size: 8px;
        color: #eb622b;
        margin-right: 8px;
    }

    .mobmenuList.accordion ul li:last-child a {
        border-bottom: 0;
    }

    .mobmenuList.accordion ul li .subMenuList.othersSubmenu a:last-child{
        border-bottom: 0px solid #eb612a30;
    }

    .sidenav .social-icons {
        display: flex;
        justify-content: center;
        float: left;
        width: 100%;
        margin-top: 50px;
        padding: 0 16px;
    }
    .sidenav .social-icons a {
        width: auto;
        text-align: center;
        border: 1px solid #e9e9e9;
        width: 50px;
        margin-right: 10px;
    }

    .sidenav .social-icons a i{
        color: #333333;
    }

    .sec-footer::after{
        display: none;
    }
    
}

@media (max-width: 991px) {

    header.site-header, header.site-header.sticky {
        padding: 0;
        box-shadow: 0 19px 38px #fff0, 0 15px 12px rgb(0 0 0 / 6%);
    }

    .logobox {
        padding-bottom: 0px;
    }

    a.closebtn {
        right: 15px;
        top: 0.5rem;
        width: 3.125rem;
    }

    header.site-header.navbar-fixed .menuWrap {
        padding: 15px 0;
    }

    .mobmenuList ul {
        padding: 0 1rem;

    }

    .mobmenuList .accordion {
        float: left;
        width: 100%;
    }

    .mobmenuList .accordion .accordion-button:focus {
        z-index: 3;
        border-color: inherit;
        outline: 0;
        box-shadow: none;
    }

}


@media (min-width: 768px) and (max-width: 991px) {
    .container.custom-container {
        max-width: 720px;
    }

    header.site-header.navbar-fixed .menuWrap {
        padding: 15px 0;
    }
    header.site-header {
        position: relative;
    }

    header.site-header .inner-whiteLogo {
        display: none;
    }

    header.site-header .inner-Logo {
        display: block;
    }
   
    .quick-services {
        padding: 30px 0;
    }
    .contact-list {
        padding: 20px 0px 20px;
    }

    .cont-info {
        margin-top: 0;
    }

    .ft-copyright {
        padding: 0;
    }
    .copyright-info a {
        padding: 0 4px;
        font-size: 12px;
    }
   
}

@media (max-width: 767px) {
    .logobox a, .logobox a img {
        width: 130px;
        height: auto;
    }

    .mobileBoxLogo.InsideSideBar img {
        width: 130px;
        height: auto;
    }

    header.site-header .inner-whiteLogo {
        display: none;
    }

    header.site-header .inner-Logo {
        display: block;
    }

    header.site-header.navbar-fixed .menuWrap {
        padding: 15px 0;
    }

    .mobmenuList.accordion ul li a {
        font-size: 18px;
    }
    .foot-logo img {
        width: 150px;
        margin-bottom: 0;
    }
    .foot-logo {
        text-align: center;
    }
    .borderaddress::before{
        display: none;
    }

    .foot-logo::before {
         display: none;
    }
    .bottm-bordr::before {
        display: none;
    }

    .footer-factory-list ul li {
        flex: 0 0 100%;
    }
    .contact-list {
        padding: 10px 15px 15px;
        position: relative;
        z-index: 2;
    }
    .cont-info a {
        font-size: 14px;
        line-height: 26px;
    }
    .cont-info a span.call-no {
        font-size: 16px;
        line-height: 28px;
        font-family: var(--bodyFont);
    }

    .cont-info a br{
        display: none;
    }
    .cont-info a span.mapstyle {
        font-size: 14px;
    }
    .cont-info {
        margin-top: 10px;
    }
    .cont-info i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        border-radius: 50%;
    }

    .quick-services {
        padding: 30px 0;
    }
    .ft-copyright {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }
    .copyright-policy {
        margin-bottom: 11px;
        color: #a5a5a5;
        font-size: 14px;
        font-family: 'Barlow-Regular';
        line-height: 28px;
    }
    .all-links h4 {
        font-size: 28px;
    }
    .socical-media a {
        margin-right: 15px;
    }
    .copyright-info a {
        font-size: 14px;
    }

    .all-links h4 {
        font-size: 18px;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    span.socical-media {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .bg-footer {
        position: absolute;
        width: 100%;
        right: 0;
        bottom: 2px;
        opacity: 0.4;
        z-index: -1;
    }
    .form-group.contact-sec {
        margin-bottom: 20px;
    }
    .sec-resume .btnread-moreread button {
        margin: 20px auto 0;
    }
    .sec-footer::after{
        display: none;
    }
}