@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #484848;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    line-height: 1.6;
}


section {
    position: relative
}

img {
    max-width: 100%;
    height: auto
}


a:hover,
a:active {
    text-decoration: none;
    color: #eb5c2e
}

ul {
    margin-bottom: 0
}

.ul--inline>li {
    display: inline-block
}

.ul--no-style>li {
    list-style: none
}

.pull-left {
    float: left
}

.pull-right {
    float: right
}

.visible {
    display: block
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    color: #333;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 35px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 20px
}

h6 {
    font-size: 15px
}



.title-2 {
    font-size: 40px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
	position: relative
}

.mt-15 {
    margin-top: 15px;
}

.under-title-2 {
    display: block;
    height: 12px;
    width: 12px;
    background: #eb5c2e;
    position: relative;
    bottom: -19px;
    left: 50%;
    margin-left: -9px
}

.title-left .under-title-2 {
    bottom: -15px;
    left: 21%;
}

.about-para h3 {
    font-size: 20px;
    color: #eb5c2e;
    padding: 15px 0 10px 0;
    font-weight: 600;
    font-style: italic;
    text-transform: capitalize;
}
.about-para h5 {
   font-size: 20px;
    padding: 0px 0 15px 0;
    font-weight: 500;
    text-transform: capitalize;
}


.mission-sec, .vision-sec {
    padding: 50px 80px;
    z-index: 0;
    width: 50%;
}
.vision-sec{
	background-color: #eb5c2e;
}
.mission-sec{
	background-color: #484848;
}
.mission-title, .vision-title {
    color: #fff;
    font-weight: 500;
    padding-bottom: 15px;
    font-size: 30px;
    letter-spacing: 1px;
}
.under-title-2:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 100px;
    top: 5px;
    left: -111px;
    background: rgba(0, 0, 0, .34)
}

.under-title-2:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100px;
    top: 5px;
    left: 23px;
    background: rgba(0, 0, 0, .34)
}

.title-small {
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 500;
    padding-bottom: 15px;
}

.title>span {
    color: #eb5c2e;
    font-size: 36px;
    font-weight: 700
}



::-webkit-input-placeholder {
    color: #d6d6d6
}

::-moz-placeholder {
    color: #d6d6d6
}

:-ms-input-placeholder {
    color: #d6d6d6
}

:-moz-placeholder {
    color: #d6d6d6
}

.owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    background: 0 0;
    border: 2px solid #666;
    -webkit-transition: all .3s ease, -webkit-transform .3s ease;
    transition: all .3s ease, -webkit-transform .3s ease;
    -o-transition: all .3s ease, -o-transform .3s ease;
    -moz-transition: all .3s ease, transform .3s ease, -moz-transform .3s ease;
    transition: all .3s ease, transform .3s ease;
    transition: all .3s ease, transform .3s ease, -webkit-transform .3s ease, -moz-transform .3s ease, -o-transform .3s ease
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #eb5c2e;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0 0 2px #eb5c2e;
    -moz-box-shadow: 0 0 0 2px #eb5c2e;
    box-shadow: 0 0 0 2px #eb5c2e
}

#page-loader {
    background: #f8f8f8;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999
}

.page-loader__spin {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-top: 6px solid #222;
    border-right: 6px solid #222;
    border-bottom: 6px solid #222;
    border-left: 6px solid #eb5c2e;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: spinner 1000ms infinite linear;
    -moz-animation: spinner 1000ms infinite linear;
    -o-animation: spinner 1000ms infinite linear;
    animation: spinner 1000ms infinite linear;
    z-index: 100000
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.au-btn {
    display: inline-block;
    line-height: normal;
    padding: 10px 20px;
    text-align: center;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    white-space: nowrap
}


.au-btn--pill {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px
}

.au-btn--yellow {
    color: #fff;
    background-color: #eb5c2e
}

.au-btn--yellow:hover {
    color: #fff;
    background-color: #333
}

.au-btn--white {
    border-color: #fff
}


a.au-btn--white {
    color: #fff !important;
}

.au-btn--big {
    padding: 10px 20px
}

.au-btn--big.au-btn--pill {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px
}

#btn-to-top {
    display: none;
    width: 40px;
    height: 40px;
    background-color: #eb5c2e;
    position: fixed;
    bottom: 15px;
    right: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 40px;
    text-align: center;
    z-index: 1000;
	color: #fff;
}

#btn-to-top:hover {
    background-color: #333
}

#btn-to-top .fa.fa-chevron-up {
    font-weight: 400;
    color: #fff
}

#btn-to-top i {
    margin-right: 0
}

.overlay {
    background: rgba(0, 0, 0, .7);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: .4s;
    -o-transition: .4s;
    -moz-transition: .4s;
    transition: .4s
}

.parallax {
    background-repeat: no-repeat;
    background-position: center left;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

.form {
    position: relative
}


header h1 {
    margin-top: 10px
}

.logo {
    text-align: center
}

nav.menu-desktop {
    margin-right: 30px
}

nav>ul>li {
    padding: 30px 18px
}

nav>ul>li>a {
    font-size: 15px
}


.header2 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
	padding: 10px 0;
}
.header-fixed{
		 -webkit-box-shadow: 1px 0 3px #ccc;
    -moz-box-shadow: 1px 0 3px #ccc;
    box-shadow: 1px 0 3px #ccc;
    background-color: rgba(255, 255, 255, .96);
	width: 100%;
}



.header2 nav>ul>li>a {
    color: #eee
}

.header2 nav>ul>li>a:hover {
    color: #eb5c2e
}

.header-desktop .social {
    margin-top: 0;
    margin-left: auto;
}

.social {
    text-align: center;
    margin-top: 55px
}

.social__item {
    display: inline-block;
    line-height: 30px;
    -webkit-transition: .6s ease;
    -o-transition: .6s ease;
    -moz-transition: .6s ease;
    transition: .6s ease;
    text-align: center;
    width: 30px;
    background: #484848;
    margin-right: 7px
}

.social .social__item:last-child {
    margin-right: 0
}

.social__item:hover {
    background: #eb5c2e
}

.social__item:hover>i {
    color: #333
}

.social__item>i {
    color: #dedede
}


.owl-theme .owl-dots .owl-dot.active span {
    background: #eb5c2e
}

.mouse {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    left: 50%;
    bottom: 47px;
    width: 16px;
    height: 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: 2px solid #fff;
    -webkit-transform: translateX(-50%) translateZ(0);
    -moz-transform: translateX(-50%) translateZ(0);
    transform: translateX(-50%) translateZ(0);
    z-index: 88887
}

.mouse__wheel {
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: 3px;
    width: 2px;
    height: 5px;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-animation: mouse-wheel 1.25s infinite linear;
    -moz-animation: mouse-wheel 1.25s infinite linear;
    -o-animation: mouse-wheel 1.25s infinite linear;
    animation: mouse-wheel 1.25s infinite linear;
    -webkit-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -o-transform-origin: 50% 0%;
    transform-origin: 50% 0%
}

@-webkit-keyframes mouse-wheel {
    0% {
        -webkit-transform: scaleY(.4) translateY(0);
        transform: scaleY(.4) translateY(0)
    }

    20% {
        -webkit-transform: scaleY(1) translateY(0);
        transform: scaleY(1) translateY(0)
    }

    60% {
        -webkit-transform: scaleY(.4) translateY(8px);
        transform: scaleY(.4) translateY(8px)
    }

    100% {
        -webkit-transform: scaleY(.4) translateY(0);
        transform: scaleY(.4) translateY(0)
    }
}

@-moz-keyframes mouse-wheel {
    0% {
        -moz-transform: scaleY(.4) translateY(0);
        transform: scaleY(.4) translateY(0)
    }

    20% {
        -moz-transform: scaleY(1) translateY(0);
        transform: scaleY(1) translateY(0)
    }

    60% {
        -moz-transform: scaleY(.4) translateY(8px);
        transform: scaleY(.4) translateY(8px)
    }

    100% {
        -moz-transform: scaleY(.4) translateY(0);
        transform: scaleY(.4) translateY(0)
    }
}

@-o-keyframes mouse-wheel {
    0% {
        -o-transform: scaleY(.4) translateY(0);
        transform: scaleY(.4) translateY(0)
    }

    20% {
        -o-transform: scaleY(1) translateY(0);
        transform: scaleY(1) translateY(0)
    }

    60% {
        -o-transform: scaleY(.4) translateY(8px);
        transform: scaleY(.4) translateY(8px)
    }

    100% {
        -o-transform: scaleY(.4) translateY(0);
        transform: scaleY(.4) translateY(0)
    }
}

@keyframes mouse-wheel {
    0% {
        -webkit-transform: scaleY(.4) translateY(0);
        -moz-transform: scaleY(.4) translateY(0);
        -o-transform: scaleY(.4) translateY(0);
        transform: scaleY(.4) translateY(0)
    }

    20% {
        -webkit-transform: scaleY(1) translateY(0);
        -moz-transform: scaleY(1) translateY(0);
        -o-transform: scaleY(1) translateY(0);
        transform: scaleY(1) translateY(0)
    }

    60% {
        -webkit-transform: scaleY(.4) translateY(8px);
        -moz-transform: scaleY(.4) translateY(8px);
        -o-transform: scaleY(.4) translateY(8px);
        transform: scaleY(.4) translateY(8px)
    }

    100% {
        -webkit-transform: scaleY(.4) translateY(0);
        -moz-transform: scaleY(.4) translateY(0);
        -o-transform: scaleY(.4) translateY(0);
        transform: scaleY(.4) translateY(0)
    }
}

.mouse>i {
    position: absolute;
    color: #fff;
    left: 50%;
    margin-left: -6px;
    bottom: -20px
}

.service-2 {
    padding: 90px 0;
}

.service-2-wrap {
    position: relative
}

.mission-text, .vision-text {
    font-size: 16px;
    color: #fff;
    font-style: italic;line-height: 1.6;
	letter-spacing: 1px;
}

.service-2__img {
    position: relative;
    margin: 0 auto;
    width: 90%
}

.service-2__img>img {
    width: 100%;
    -webkit-box-shadow: 0 6px 14.56px 1.44px rgba(0, 0, 0, .22);
    -moz-box-shadow: 0 6px 14.56px 1.44px rgba(0, 0, 0, .22);
    box-shadow: 0 6px 14.56px 1.44px rgba(0, 0, 0, .22)
}
div#navbarNav {
    display: flex;
    align-items: center;
}
.navbar{
	justify-content: space-between;
	padding: 0;
}

.nav-item {
    margin: 0 15px 0 0;
}
	.brand-logo {
    width: 220px;
}
.navbar-nav{
	align-items: center
}
.custom-container {
    padding: 10px 7%;
}

.nav-link {
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s ease 0s;
    font-weight: 600;
    line-height: 1.6;
}
.header-fixed .nav-link{
	color: #484848
}

a.nav-link.nav-btn {
    background-color: #eb5c2e;
    color: #fff;
    padding: 10px 15px !important;
    display: inline-block;
}

.service-2__inner-head {
    padding: 0
}

.title-left {
    font-weight: 600;
    color: #eb5c2e;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 15px;
    font-size: 45px;
    text-transform: capitalize;
    padding-bottom: 20px;
	position: relative;
	font-family: 'Poppins', sans-serif;
}

header.header-desktop.header2.header-stick.header-stick--show {
    position: fixed;
    top: 0;
}

.about-para p b {
    font-size: 18px;
    color: #eb5c2e;
    line-height: 1.5;
    margin-bottom: 10px;
    display: block;
}

.footer-widget h3 {
    color: #484848;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 25px;
    text-align: left;
    padding-bottom: 15px;
}

.footer-widget h4 {
    color: #484848;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 19px;
    text-align: left;
    padding-bottom: 15px;
}

.footer-widget p {
    color: #484848;
    font-size: 16px;
    text-align: left;
    padding-bottom: 0px;
	margin-bottom: 0
}

.footer-widget p a {
    color: #484848;
    font-size: 16px;
	line-height: 2;
}

.service-2__inner-head p {
    color: #484848;
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
}

.service-2__inner-head .see-more {
    margin: 25px auto 0 auto;
    width: 100%
}


.slide-re-pro {
    width: 100%;
    position: relative
}

.slide-re-pro__item {
   position: relative;
    padding: 0 0 15px 0;
    box-shadow: 0 2px 6px rgba(71, 69, 69, 0.5);
    transition: all .5s ease;
    height: 100%;
	background-color: #fff;
	overflow: hidden;
}
.slide-re-pro__item:hover, .slide-re-pro__item:focus {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.pro-info {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: all .6s ease 0s;
    -o-transition: all .6s ease 0s;
    -moz-transition: all .6s ease 0s;
    transition: all .6s ease 0s;
    top: 0;
    left: 0;
      -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 100;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	padding: 20px 25px

}

h4.pro-title {
    width: 100%;
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #333;
    text-transform: capitalize;
    padding: 10px 0;
}


.pro-cat-name {
    width: 100%;
    color: #333;
    font-size: 15px;
}
	
.slide-re-pro.owl-theme .owl-nav div {
    width: 35px;
    height: 35px;
    line-height: 40px;
    position: absolute;
    top: 35%;
    margin-top: -15px;
    background: #111;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .6s ease 0s;
    -o-transition: all .6s ease 0s;
    -moz-transition: all .6s ease 0s;
    transition: all .6s ease 0s;
    color: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
		.slide-re-pro.owl-theme .owl-nav{
		display: block
	}


.slide-re-pro.owl-theme .owl-nav div:hover {
    color: #fff;
    background: #eb5c2e
}

.slide-re-pro.owl-theme .owl-nav .owl-prev {
    left: 8px
}

.slide-re-pro.owl-theme .owl-nav .owl-next {
    right: 0px
}

.our-offering .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    min-height: inherit;
    object-fit: cover;
}

.our-section, .our-offering, .catalogue-section {
    padding: 90px 0;
	z-index: 0
}



footer {
    position: relative;
    text-align: center
}

footer .social {
    margin-top: 30px
}

.social__item--circle {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.copyright {
    padding: 15px 0;
    text-align: center;
    background: #111;
    color: #fff;
    font-size: 16px
}

.copyright span {
    color: #eb5c2e
}
.footer-2{
	padding: 70px 0 50px 0;
	background-image: url("../images/bg-footer.webp");
   background-size: cover;
    background-repeat: no-repeat;
		
}


.pro__item {
    margin-bottom: 30px
}



.navigation h2 {
    font-size: 30px;
    float: left;
    padding-right: 40px;
    text-transform: uppercase;
    display: block;
    margin: 0;
	color: #fff;
    font-weight: 600
}

.breadcrumbs {
    float: none;
    margin-top: 3px;
    padding: 0
}

.breadcrumbs span {
    display: inline-block;
    font-size: 18px;
    margin: 0 3px;
    color: #fff
}

.breadcrumbs li a{
    font-size: 16px;
    color: #fff
}

.breadcrumbs li.active {
    color: #fff;
    font-size: 18px;
	font-weight: 600
}

.parallax--nav-1 {
    padding: 0;
  	background-position: center center;
    background-color: rgb(0 0 0 / 20%);
    background-blend-mode: overlay;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.breadcrumb-container{
	height: 100%;
    display: flex;
    align-items: center;
}
.navigation img{
	width: 100%
}


.bg-f8 {
    background: #f8f8f8
}


.port1 {
    padding: 90px 0;
	z-index: 0
}

.port1-img {
    display: block;
    float: left;
    width: 33.33%;
    padding-right: 30px;
    margin-bottom: 30px;
}

.port1__img-wrap {
    margin-right: -30px
}

.port1__img-wrap .port1-img {
    padding-right: 30px
}

.port1__img-wrap .port1-img a img {
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease
}

.port1__img-wrap .port1-img a:hover img {
    opacity: .5
}

.service-list {
    padding: 90px 0;
}



.add-block h3 {
    text-transform: capitalize;
    font-size: 28px;
    font-weight: 500;
    padding: 15px 0;
}

.add-block h4, .social-title {
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 500;
    padding: 15px 0;
    color: #eb5c2e;
}

.address-sec .social {
    text-align: left;
    margin-top: 0px;
}

.add-block p,
.add-block p a {
    color: #000;
    font-size: 18px;
    padding-bottom: 10px;
}


.contact-content {
    padding: 90px 0;
}


.form-contact-wrap {
    border: 1px solid rgba(238, 238, 238, 0.75);
    padding: 30px;
    box-shadow: 0 2px 6px rgba(71, 69, 69, 0.5);
    transition: all .5s ease;
}


.form-contact input, .form-contact select,
textarea {
    width: 100%;
    color: #999;
    outline: none;
    padding: 10px;
    border: 1px solid #cecece
}

.form-contact input, .form-contact select {
    margin-bottom: 10px
}

.form-contact textarea {
    min-height: 100px
}

.form-contact-wrap div>button {
    border: none;
    cursor: pointer;
    margin-top: 20px
}



textarea,
input {
    -o-transition: border-color .5s ease;
    transition: border-color .5s ease;
    -moz-transition: border-color .5s ease;
    -webkit-transition: border-color .5s ease
}

textarea:focus,
input:focus {
    border-color: #eb5c2e !important
}




.slide-re-pro__item:hover img, .slide-re-pro__item:focus img {
    transform: scale(1.1);
    transition: all .5s ease;
}


.mb-30 {
    margin-bottom: 30px;
}

.service-box {
    border: 1px solid rgba(238, 238, 238, 0.75);
    padding: 30px;
    box-shadow: 0 2px 6px rgba(71, 69, 69, 0.5);
    transition: all .5s ease;
	background-color: #fff;
	height: 100%;
}
.comp-box{
	padding: 30px;
}
.service-box:hover,
.service-box:focus{
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.service-box.p-0 {
    box-shadow: none;
}

.box-icon {
    width: auto;
    display: flex;
    align-items: center;
}

.box-icon img {
    width: 80px;
    margin: 0 20px 15px 0;
}

.box-icon h3 {
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.box-info p {
    text-align: justify;
    font-size: 16px;
}

.box-image img {
    max-height: 295px;
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}

.banner-slider .item {
  height: 100vh;
	overflow:hidden;
  position: relative;
}
.banner-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	 -webkit-animation: zoom 20s linear infinite;
  animation: zoom 20s linear infinite;
}
.banner-slider .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.banner-slider .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}
.banner-slider .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.banner-slider .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}

.banner-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.banner-slider .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
.banner-slider .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.banner-slider .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
.banner-slider .owl-nav .owl-prev:focus {
  outline: 0;
}
.banner-slider .owl-nav .owl-prev:hover {
  background: #000 !important;
}
.banner-slider .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.banner-slider .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
.banner-slider .owl-nav .owl-next:focus {
  outline: 0;
}
.banner-slider .owl-nav .owl-next:hover {
  background: #000 !important;
}
.banner-slider:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.banner-slider:hover .owl-next {
  right: 0px;
  opacity: 1;
}
.service-2__inner-head p.large-text {
    position: absolute;
    left: -10px;
    z-index: -3;
    margin: 0;
    font-weight: 900;
    opacity: .05;
    color: #000;
    display: block;
    bottom: 0;
    font-size: 90px;
}
p.large-text {
    position: absolute;
    left: -10px;
    z-index: -3;
    margin: 0;
    font-weight: 900;
    opacity: .07;
    color: #000;
    display: block;
    bottom: 21px;
    font-size: 90px;
}
.commen-sec .title-left .under-title-2 {
    bottom: -17px;
    left: 10%;
}
.footer-menu {
    list-style-type: none;
    text-align: left;
	display: flex;
    flex-wrap: wrap;
}
.footer-menu li {
    padding: 0px 0 10px 0;
	width: 50%;
}
.footer-menu li a{
	color: #484848;
	font-size: 16px;
}
.footer-logo img {
    width: 250px;
}

/*******************
Feature 41
*******************/
.wrap-feature41-box .f41-tab {
    display: block;
}
.wrap-feature41-box .f41-tab li{
	margin: 0
}
.wrap-feature41-box .f41-tab li a{
	 background: #f9f9f9;
	border-left: 8px solid #f9f9f9;
	border-right: 8px solid #f9f9f9;
}
.wrap-feature41-box .f41-tab li a h5 {
    font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	text-transform: capitalize;color: #000;
	padding: 10px 0;
}


.wrap-feature41-box .f41-tab li a.active, .wrap-feature41-box .f41-tab li a:hover {
    background: #000;
	border-left: 8px solid #eb5c2e;
	border-right: 8px solid #eb5c2e;
}
.wrap-feature41-box .f41-tab li a.active  h5, .wrap-feature41-box .f41-tab li a:hover  h5{
   color: #fff
}
.tab-title{
	width: 100%;
    display: block;
    font-size: 28px;
    font-weight: 500;
    color: #333;
    text-transform: capitalize;
    padding: 0px 0 25px 0;
}
.tab-pane img {
    margin-bottom: 25px;
}
.tab-pane p {
    font-size: 16px;
	text-align: justify;
}
.tab-pane p b {
    font-size: 17px;
    font-weight: 600;
}
.type-list {
   padding-left: 1.3rem;
    margin-bottom: 30px;
}
.type-list li{
   font-size: 16px;
	padding: 5px 0;
}
.tab-pane {
    padding: 0 30px;
}
.mobile-info{
	display: none;
}
.title-center {
    font-weight: 600;
    color: #eb5c2e;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 15px;
    font-size: 45px;
    text-transform: capitalize;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
	font-family: 'Poppins', sans-serif;
}
.commen-sec .title-center .under-title-2 {
    bottom: -17px;
    left: 50%;
}

.commen-sec .title-center p.large-text {
    position: absolute;
    left: 50%;
    z-index: -3;
    margin: 0;
    font-weight: 900;
    opacity: .05;
    color: #000;
    display: block;
    bottom: 24px;
    font-size: 90px;
    transform: translate(-50%, 0);
}
.service-box h3, .comp-box h3 {
    font-weight: 500;
    font-size: 22px;
    text-transform: capitalize;
    padding-bottom: 10px;
}
.service-box p, .comp-box p  {
    text-align: justify;
    font-size: 14px;
    line-height: 1.6;
}
.pos-row {
    position: relative;
	align-items: center
}
.fullwidth-col {
    display: flex;
    align-items: center;
	background-color: #eb5c2e;
}
.modal-dialog{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.modal-body .form-contact-wrap {
    border: none;
    box-shadow: none;
    padding: 15px;
}
.contact-icon i{
	margin-right: 5px
}


.modal{
	z-index: 99999;
}
button.close {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: #eb5c2e;
    opacity: 1;
    color: #fff;
    font-weight: 300;
    font-size: 25px;
    line-height: 30px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
button.close:focus, button.close:hover {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    border: 0;
    background-color: #eb5c2e;
	cursor: pointer;
	outline: none;
	box-shadow: none;
}
.wo-list{
	justify-content: center;
}
.wo-list h3{
	font-size: 17px;
    color: #484848;
    text-transform: capitalize;
    padding: 15px 0 0 0;
    font-weight: 500;
    text-align: center;
}
.wo-list .flex-item {
    margin: 0 10px;
    padding: 10px;
     transition: all .5s ease;
    background-color: #f4f4f4;
	display: flex;
    flex-direction: column;
    align-items: center;
	width: 12%;
}


.wo-list img {
    width: 55px;
    height: auto;
}
.p-rel{
	position: relative;
}
.p-rel::after {
    content: '\f178';
    font-family: 'FontAwesome';
    position: absolute;
    right: -22px;
    top: 25%;
    font-size: 18px;
	z-index: 8;
}
.wo-list img.arrow-img{
	width: 30px;
	
}
.pt-60{
	padding-top: 60px;
}
.wo-list .vib-logo img {
    width: 100%;
    margin: auto;
}
.wo-list .flex-item.vib-logo {
    width: 200px;
    margin: auto 20px;
}
.bg-prime {
   
    margin-left: 0;
    margin-right: 0;
}
.whats-up {
    position: fixed;
    bottom: 80px;
    right: 10px;
    z-index: 99;
}
.whats-up img {
    width: 40px;
    height: 40px;
}
.mobile-btn{
	display: none;
}
.cat-title a{
   font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 20px 10px;
    width: auto;
    word-wrap: break-word;
    display: flex;
    justify-content: space-between;
    align-items: center;
	min-height: 80px;
	color: #000;
}
.cat-title i {
    color: #eb5c2e;
}
.catalog-block {
    box-shadow: 0 2px 6px rgba(71, 69, 69, 0.5);
    background-color: #fff;
    margin-bottom: 30px;
}