@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');

body{
	line-height: 1.5;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
}
body.hidden-scrolling{
	overflow-y: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
.containers{
	max-width: 100%;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}

/*Email Form start*/

.btn-success {
    color: #fff;
    background-color: #46855d;
    border-color: #46855d;
}

input#email::placeholder {
    text-align: left;
}

/*Email form End*/

/*Top header start*/
.top-head{
	background-color: rgb(84, 9, 154);
	text-align: right;
	display: block!important;

}
.top-ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.top-ul li{
	display: inline-block;
    margin-left: 30px;
    position: relative;
}
.top-ul li a{
	display: block;
    padding: 12px 0;
    font-size: 13px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s ease;
	text-decoration: none;
}

@media(max-width:1500px){
	.top-head{
		display: block!important;
	}
                .ex-section iframe {
    width: 50%!important;
}
}
@media(max-width:991px){
	.top-head{
		display: none!important;
	}
        .ex-section iframe {
    width: 80%!important;
}
}
/*Top header end*/


/*header*/
.header{
	position: fixed;
	width: 100%;
	left:0;
	top: 0;
	z-index: 99;
}
.header-main{
	background-color: yellow;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 50px;
}
.header .logo{
	padding: 0 15px;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 30px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color: #000000;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #e91e63;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top: 76px;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #e91e63;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}


/*Banner Part Start*/
.banner-part{
	/* background-image: url(../images/banner/chemical.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    width: 80%;
    margin: 0% 10%;
    position: relative;
    top: 96px;
    border-radius: 21px;
	opacity: 0.8; */
}
.banner-part {
	position: relative;
    top: 162px;
}
.banner-image-sec {
    position: relative;
	height: 576px;
}
.banner-sec{
	color: #ffffff;
	padding: 10% 0%;
	position: relative;
	width: 84%;
}
.banner-title {
    margin-bottom: 5%;
}
.banner-head{
	font-size: 25px;
}
.banner-head h1 {
    font-size: 47px;
}
.banner-para p {
    font-size: 21px;
}
.banner-para {
    width: 80%;
}
.basser-button-sec {
    margin: 8% 0%;
}
.basser-button-sec button {
    font-size: 17px;
}
.basser-button-sec button {
    font-size: 17px;
    padding: 10px 15px;
}
.btn-cus{
	border: none;
	background: transparent;
	font-size: 30px!important;
	color: #ffffff;
}
.banner-heading {
    position: absolute;
    top: 0px;
    left: 17%;
    color: #ffffff;
    width: 76%;
    /* background-color: rgba(0,0,0,0.2);
    height: 576px;
    width: 66%;
	border-radius: 15px; */
}
.banner-image-sec img{
	width: 100%;
	height: 100%;
	border-radius: 15px;
}
.banner-sec-part {
    width: 53%;
    position: relative;
    top: 30px;
    left: 59px;
}
@media(max-width:1023px){
	.banner-para{
		display: none!important;
	}
	.banner-image-sec {
		position: relative;
		height: 414px!important;
	}
}
@media(min-width:1024px){
	.banner-para{
		display: block!important;
	}
	
}
h5.text-uppercase.text-success {
    font-size: 1.5rem;
    font-weight: bolder;
}
.h1, h1 {
        font-size: 1.5rem;
        font-weight: bolder;
    }
/*Banner Part End*/


/*Service Section Start*/
.service-head{
	position: relative;
	padding: 15px 0px;
}
.service-head h1{
	color: #46855d;
}
.service-section-sec {
    position: relative;
    margin: 5% 0% 5% 0%;
}
.service-head-para {
    display: flex;
    margin-bottom: 21px;
    font-family: Nunito, sans-serif;
}
.service-head-para p{
	width: 60%;
	font-size: 16px;
}
.btn-cus-col {
    color: #000000;
    font-size: 16px!important;
    border: none;
    outline: none;
    right: -26%;
    position: relative;
    float: right;
	top: 19px;
}
h1.text-uppercase.text-success {
    color: #46855d !important;
}footer.custom-footer.py-5.position-relative {
    background-color: rgb(148 184 128 / 12%);
}.footer-list li a:hover {
    color: rgb(33 189 61);
    font-weight: 700;
}
.card-col-body {
    background-color: rgb(148 184 128 / 12%);
}
.card-des-sec p {
    margin: 10px;
    font-size: 15px;
    font-weight: 600;
}
.card-des-sec {
    text-align: center;
	padding: 20px;
}
.card-des-sec i {
    font-size: 65px;
    color: #46855d;
}h1.mb-3.ff-secondary.fw-bold.lh-base {
    margin: 8% !important;
}footer.custom-footer.bg-dark.py-5.position-relative {
    background-color: #f3f5fc8a !important;
}
/*Service Section Start*/


/*About Us Start*/
.about-head{
	text-align: center;
	color: rgb(84, 9, 154);
}
.about-image img {
    width: 100%;
	border-radius: 10px;
}
.about-head h1{
	color: #275504;
	margin: 5% 0%;
}
.about-head h5{
	margin: 2% 0%;
        text-align: left;
}
.about-para p{
	font-size: 17px;
}
.about-button .btn-rt{
	background: rgb(84, 9, 154);
	float: right;
	margin-top: 10px;
}
/*About Us End*/


/*Footer Section Start*/
.footer-sec{
	background-color: rgb(84, 9, 154);
	position: relative;
	color: #ffffff;
	padding: 50px 0px;
}
.logo-sec {
    margin: 19px 0px;
}
.footer-social ul{
	margin-top: 0;
	padding: 0;
}
.footer-social ul li{
	display: inline-block;
    position: relative;
}
.footer-social ul li a{
	color: #ffffff;
	text-decoration: none;
	margin-right: 10px;
}
.footer-social ul li a i{
	font-size: 20px;
}
.ser-sec ul{
	padding: 0;
	margin: 0;
}
.ser-sec ul li{
	display: block;
	position: relative;
	margin: 4px 0px;
}
.ser-sec ul li a{
	color: #ffffff;
	text-decoration: none;
}
/*Footer Section End*/


/*Banner Slider Start*/
.item{
	background: rgb(30,107,59);
background: linear-gradient(90deg, rgba(30,107,59,1) 35%, rgba(2,0,36,1) 100%, rgba(0,212,255,1) 100%);
color: #ffffff;
width: 100%;
/*margin: 0% 15%;*/
border-radius: 5px;
padding: 50px 0px;
}

.banner-text{
	margin: 40px 56px;
	color: #ffffff;
}
.banner-text h6{
	margin-bottom: 30px;
	color: #ffffff;
}
.banner-text h1{
	width: 100%;
	color: #ffffff;
}
.banner-text p{
	width: 85%;
	margin-top: 20px;
	color: #ffffff;
}
.owl-dots{
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 1%;
}
.owl-button{
	border: none!important;
	outline: none!important;
}
.owl-prev,.owl-next{
	/* position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #000000!important;
	font-weight: bolder!important;
	background: none!important;
	font-size: 20px; */
	display: none!important;
}
.owl-prev{
	left: 16%;
}
.owl-next{
	right: 1%;
}
.client-images img{
    max-height: none!important;
    height: auto!important;
    width: auto!important;
    margin: 10px auto!important;
}
/* .owl-nav {
    position: absolute;
    top: 221px;
} */
/*Banner Slider End*/

section#features {
    background: linear-gradient(90deg, rgba(30, 107, 59, 1) 35%, rgba(2, 0, 36, 1) 100%, rgba(0, 212, 255, 1) 100%) !important;
    margin-top: 70px;
}
section.section.ex-section {
    text-align: center;
}
.ex-section iframe {
    height: 725px;
    width: 65%;
}



@media(max-width:991px){
	.banner-text p {
		width: 100% !important;
	}
	.item.contact-item p {
		padding: 1% 10%;
	}
	.item.item.form-item p{
		padding: 1% 12%!important;
	}
}
@media(min-width:992px){
	.banner-text p {
		width: 85% !important;
	}
	.item.contact-item p {
		padding: 1% 24%!important;
	}
	.item.item.form-item p{
		padding: 1% 12%!important;
	}
}
.item.about-item h1,.item.contact-item h1,.item.form-item h1 {
    color: #fff;
}
.item.contact-item p,.item.form-item p{
    text-align: center;
    color: #ffffff !important;
    padding: 1% 24%;
}