@font-face {
    font-family: "Segoe Media Center";
    src: url("../fonts/SegoeUI-Italic.woff2") format("woff2"), url("../fonts/SegoeUI-Italic.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/SegoeUI-BoldItalic.eot");
    src: url("../fonts/SegoeUI-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUI-BoldItalic.woff2") format("woff2"), url("../fonts/SegoeUI-BoldItalic.woff") format("woff"),
        url("../fonts/SegoeUI-BoldItalic.ttf") format("truetype"), url("../fonts/SegoeUI-BoldItalic.svg#SegoeUI-BoldItalic") format("svg");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/SegoeUI-Light.eot");
    src: url("../fonts/SegoeUI-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUI-Light.woff2") format("woff2"), url("../fonts/SegoeUI-Light.woff") format("woff"), url("../fonts/SegoeUI-Light.ttf") format("truetype"),
        url("../fonts/SegoeUI-Light.svg#SegoeUI-Light") format("svg");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI Semilight";
    src: url("../fonts/SegoeUI-Semilight.eot");

    src: url("../fonts/SegoeUI-Semilight.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUI-Semilight.woff2") format("woff2"), url("../fonts/SegoeUI-Semilight.woff") format("woff"),
        url("../fonts/SegoeUI-Semilight.ttf") format("truetype"), url("../fonts/SegoeUI-Semilight.svg#SegoeUI-Semilight") format("svg");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/SegoeUI-Italic.eot");
    src: url("../fonts/SegoeUI-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUI-Italic.woff2") format("woff2"), url("../fonts/SegoeUI-Italic.woff") format("woff"), url("../fonts/SegoeUI-Italic.ttf") format("truetype"),
        url("../fonts/SegoeUI-Italic.svg#SegoeUI-Italic") format("svg");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/SegoeUI-Bold.eot");
    src: url("../fonts/SegoeUI-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUI-Bold.woff2") format("woff2"), url("../fonts/SegoeUI-Bold.woff") format("woff"), url("../fonts/SegoeUI-Bold.ttf") format("truetype"),
        url("../fonts/SegoeUI-Bold.svg#SegoeUI-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/SegoeUI-BoldItalic_1.eot");
    src: url("../fonts/SegoeUI-BoldItalic_1.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUI-BoldItalic_1.woff2") format("woff2"), url("../fonts/SegoeUI-BoldItalic_1.woff") format("woff"),
        url("../fonts/SegoeUI-BoldItalic_1.ttf") format("truetype"), url("../fonts/SegoeUI-BoldItalic_1.svg#SegoeUI-BoldItalic") format("svg");
    font-weight: bold;
    font-style: italic;
}

h1 {
    font-size: 42px;
    margin-bottom: 18px;
    font-weight: bold;
}

a {
    color: #147ab5;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}
a:hover,
a:focus {
    color: #000;
}
body {
    font-family: "Segoe UI";
}

.header {
    background-color: #fff;
    padding: 1em 0em;
}

.navbar-brand img {
    width: 300px;
}
nav.navbar {
    background: transparent !important;
}
nav.navbar ul.navbar-nav {
    margin-left: 13.5em;
    margin-top: 6px;
}
.header ul li.nav-item {
    padding: 0 12px;
}
.header ul li.nav-item a {
    text-transform: capitalize;
}

/*.navbar-brand img {
    max-width: 180px;
}*/
.navbar-dark .navbar-nav .nav-link {
    color: #000;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff !important;
    background-color: #836f59 !important;
}

/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #836f59;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-shutter-in-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-shutter-in-horizontal:hover,
.hvr-shutter-in-horizontal:focus,
.hvr-shutter-in-horizontal:active {
    color: white;
}

.hvr-shutter-in-horizontal:hover:before,
.hvr-shutter-in-horizontal:focus:before,
.hvr-shutter-in-horizontal:active:before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

.header ul li a.active {
    color: #fff !important;
    background-color: #836f59 !important;
}

.active.hvr-shutter-in-horizontal:before {
    background: #836f59;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff !important;
    background-color: #836f59 !important;
}

.btn-def-vasant {
    background: #836f59;
    color: #fff;
    transition: all 0.5s ease-in-out;
    border-radius: 0px;
    text-transform: capitalize;
}
.btn-def-vasant:hover,
.btn-def-vasant:focus {
    background-color: #ffcc29;
    color: #000;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.heading-h1,
h1.title {
    font-size: 30px;
    text-transform: uppercase;
    color: #847059;
    border-bottom: 3px solid #847059;
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 1em;
}

.product-det .product-img {
    text-align: center;
    overflow: hidden;
    border: 2px solid #e7e7e7;
}

.product-det .product-txt p {
    text-transform: capitalize;
    background: #ffcc29 !important;
    padding: 8px 16px;
    margin-bottom: 0px;
    color: #000 !important;
    font-weight: normal;
}

.about,
.product-blk {
    margin: 3em 0em;
}

.all-product {
    text-align: center;
    margin: 3em 0em 0em 0em;
}

.ft-logo img.img-fluid {
    width: 110px;
}

footer .address-ico,
footer .tel-ico {
    display: inline-block;
}
footer .address .address-txt {
    width: calc(100% - 132px);
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}
.mail a::before {
    content: "\f0e0";
    font-family: fontawesome;
    margin-right: 10px;
    color: #000;
    font-size: 16px;
}

.tel-phone .txt-number {
    width: calc(100% - 100px);
    display: inline-block;
    vertical-align: top;
    margin-left: 8px;
}
footer .tel-phone .txt-number p {
    margin-bottom: 0px;
}
footer a {
    color: #000;
    font-weight: normal;
    text-decoration: none;
}
footer {
    background: #e7e7e7;
    padding: 3em 0em;
}
footer .mail {
    margin: 8px 0px;
}
footer .address p {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
}

footer .quick-link li a {
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
footer .quick-link li a:hover,
footer .quick-link li a:focus,
.ft-info a:hover,
.ft-info a:focus {
    color: #847059;
}

.ft-info a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

footer .quick-link li {
    margin-bottom: 6px;
}
footer h3 {
    text-transform: capitalize;
    font-size: 24px;
    border-bottom: 3px solid #847059;
    display: inline-block;
    font-weight: bold;
    color: #847059;
    padding: 11px 8px;
}

.ft-logo img.img-fluid {
    width: 170px;
    position: relative;
    top: 1em;
}
.copyright p {
    margin-bottom: 0px;
    color: #fff;
}

.copyright {
    background: #000;
    padding: 14px 0px;
}

.copyright a {
    color: #ffcc29;
    text-decoration: none;
}

div.breadcumb .breadcrumb {
    padding: 5px;
    margin: 0;
    background: transparent;
    float: right;
}

.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item {
    font-size: 12px;
    line-height: 16px;
    margin-top: 3px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item {
    font-size: 12px;
    line-height: 16px;
    margin-top: 3px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "|";
}

div.breadcumb .breadcrumb li:first-child::before {
    content: "\f015";
    font-family: fontawesome;
    padding-right: 6px;
    font-size: 16px;
}

.product-page .product-det {
    margin-bottom: 26px;
}

.product-det .product-img img {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
}
.product-det:hover .product-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.innr-slider .fa {
    color: #ffcc29;
    font-size: 22px;
}
table tr th.odd {
    background: #847059;
    color: #fff;
}
table tr th.even {
    background: #927e63;
    color: #fff;
}

.production-txt.d-g {
    background: #d8d9d9;
}
.production-txt.l-g {
    background: #ebebeb;
}
.production-page .production-txt {
    padding: 10px 13px;
    text-align: center;
    margin-bottom: 1em;
    text-transform: capitalize;
}
.business-process-blk .business-process-img img.img-fluid {
    width: 130px;
}
.business-process-nm {
    text-align: center;
}
.business-process-blk {
    text-align: center;
}
.business-process-blk {
    margin-bottom: 5em;
    border: 1px solid #e7e7e7;
    padding: 2em 0em 1em;
}
.business-process-img {
    margin-bottom: 1em;
}
.business-process-nm p {
    text-transform: capitalize;
}
ul.list-icon li::before {
    content: "\f111";
    font-family: fontawesome;
    font-size: 9px;
    position: relative;
    top: -2px;
    margin-right: 1em;
}

ul.list-icon li {
    margin-bottom: 8px;
}
.contact-us-page .form-control {
    box-shadow: none;
}
.contact-us-page .btn.btn-default {
    background: #847059;
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.contact-us-page .btn.btn-default:hover,
.contact-us-page .btn.btn-default:focus {
    background-color: #ffcc29;
    color: #000;
}

.slider i.fa {
    color: #ffcc29;
    font-size: 22px;
}

.carousel-indicators .active {
    background-color: #ffcc29;
}
.carousel-indicators li {
    background-color: rgb(132, 112, 89);
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

.media-gallery-model .modal-body img.img-fluid {
    max-width: 100% !important;
}
.txt-model-header {
    text-transform: capitalize;
}
.media-gallery-model .modal-dialog {
    width: 600px !important;
    max-width: 500px !important;
}

.social-ft div {
    display: inline-block;
}
.social-ft div.twitter {
    margin-right: 4px;
}
.social-ft i.fa {
    font-size: 18px;
}
.social-ft a:hover {
    color: #847059;
}
.make-in-india {
    margin-top: 2em;
}

/*10-11-2022*/
.lightbox-gallary {
    margin-left: 25px;
}
.lb-closeContainer {
    position: absolute;
    top: 0;
    right: 33%;
}
.custlight-box {
    display: flex;
    align-items: to[];
}
/*end 10-11-2022*/

@media screen and (max-width: 1199px) {
    .header ul li.nav-item {
        padding: 0 4px;
    }
    nav.navbar ul.navbar-nav {
        margin-left: 10.5em;
        margin-top: 6px;
    }
}

@media screen and (max-width: 991px) {
    .navbar-toggler {
        background: #847059;
        position: relative;
        top: 10px;
    }
    nav.navbar ul.navbar-nav {
        margin-left: 0;
    }
    header .navbar-nav li a {
        display: block;
        padding: 8px 12px !important;
    }
    .abt-home {
        margin-bottom: 1em;
    }
    .product-blk .product-det {
        margin-bottom: 1em;
    }
    .innr-slider img.img-fluid {
        width: 100%;
    }
    .mob-production-facility .production-txt.d-g,
    .mob-production-facility .production-txt.l-g.ml-g {
        background: #ebebeb;
    }
    .mob-production-facility .production-txt.l-g,
    .mob-production-facility .production-txt.d-g.md-g {
        background: #d8d9d9;
    }
    .contact-img {
        margin-bottom: 1em;
    }
}

@media screen and (max-width: 767px) {
    .copyright p {
        text-align: left !important;
    }

    .business-process-blk {
        margin-bottom: 2em;
    }

    .heading-h1,
    h1.title {
        font-size: 22px;
    }
    .about,
    .product-blk {
        margin: 1em 0em;
    }
}

@media screen and (max-width: 575px) {
    .media-gallery-model .modal-dialog {
        margin: 26px auto;
        max-width: 100% !important;
        padding: 0 12px;
    }
		
	.cetr{text-align:left !important;}
}

.cetr{text-align:right;}