@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,100&display=swap');


/*Reset*/
*
{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
html
{
	    overflow-x: hidden;

}
body
{
font-size:17px;
letter-spacing: 0.5px;
 overflow-x: hidden;
 font-family: Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}
ul li
{
	list-style-type: none;
}
.col-wh
{
	color:#fff;
}
.col-09
{
	color:#09225d;
}
.col-13
{
	color:#13519c;
}
.col-6a
{
	color:#6a8922;
}
.p-left-4em
{
	padding-left:4em;
	padding-right:4em;
}
p
{
	margin:0;
}
.bg-16
{
	background-color: #1f6fac;
}
.lr-pd-2em
{
	padding:0 2em;
}
/*Menu*/


body.hidden-scrolling{
	overflow-y: hidden;
}

ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
#pagepiling .section
{
	
	height:100vh;
}
.sec1
{
	  background: url(../images/banner.png) center center no-repeat;
	min-height: 100vh;
	position: relative;
	background-size: cover;

}
.sec2
{
	   background:#fff;;

}
.sec3
{
	   background:#fff;;

}
.sec4
{
	   background:#fff;;

}
.solution-bx
{
  position: relative;
}
.solution-bx::before{
  content: '';
  position: absolute;
  left:0;
  bottom:0;
  width:0;
  box-sizing: border-box;
  height: 0;
  border-bottom:3px solid transparent;
  border-left: 3px solid transparent;
  transition: all .8s ease;
}
.solution-bx::after{
  content: '';
  position: absolute;
  right:0;
  top:0;
  width:0;
  box-sizing: border-box;
  height:0;
  border-top:3px solid transparent;
  border-right: 3px solid transparent;
  transition: all .8s ease;
}
.inner:hover .solution-bx::after,
.inner:hover .solution-bx::before{
   border-color: #13519c;
   width: 100%;
   height: 100%;
}
/*header*/
.header{
	position: absolute;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 0 15px 15px 15px;
}
.header-main{
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 0px;
}
.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: 15px;
	margin-right:15px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 17px;
	color: #13519c;
	text-transform: capitalize;
	font-weight: 300;
	font-family: 'Roboto', sans-serif;
	transition: all 0.3s ease;
}
.menu
{
	margin-top:20px;
}

.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: #13519c;
	text-decoration-line: none;
}
.header .menu > .menu-item > a:before
{
  content:'';
  position:absolute;
  left:0;
  background-color: #13519c;
  width:100%;
    bottom:-12px;
    height: 4px;
  transform: scaleX(0);
  transform-origin: center;
  transition:transform 650ms;
}
.header .menu > .menu-item:before 
{
content: '|';
    position: relative;
    right: 17px;
    color: #13519c;
    width: 100%;
    top: 36px;
    /* height: 0; */
    /* transform: scaleX(0); */
    /* transform-origin: center; */
    /* transition: transform 650ms;*/
}
.header .menu > .menu-item:nth-child(1):before
{
  display: none;
}

.header .menu > .menu-item > a:hover::before
{
  transform: scaleX(1);
}

.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	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-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.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: #fff;
		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: #13519c;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item > a:before, .header .menu > .menu-item:before
	{
		display: none;
	}
	.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;
	}
}


/*Menu Close*/
.btn-primary
{
	background-color: #1f6fac;
	padding:6px 18px;
	border-radius: 3px;
	border:1px solid #1f6fac;
	transition: 0.5s all;
}
.btn-primary:hover
{
	background-color: #fff;
	color:#1f6fac;
}
.btn-reset
{
	background-color:#fff;
	color: #1f6fac;
	padding:6px 18px;
	border-radius: 3px;
	border:1px solid #1f6fac;
	transition: 0.5s all;
}
.btn-reset:hover
{
background-color: #1f6fac;
	color:#fff;
}
.padding-section
{
	padding:3em 0;
}
.about-info
{
	padding:11em 2em 6em 2em;
}
.title
{
	font-size:30px;
	font-family: 'Signika', sans-serif;
	font-weight: 400;
	letter-spacing: 3px;
}
.about-index
{
	font-size:18px;
	line-height: 33px;
	font-family: 'Roboto', sans-serif;
}
.underline1 {
    background-color: #13519c;
    height: 6px;
    width: 142px;
    margin: 2em 0 3em 0;
}
.title1 {
    font-size: 35px;
    font-family: 'Signika', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1em;
}
.about-index-pha1
{
	font-size:16px;
	line-height: 33px;
	margin-bottom:10px;
	font-family: 'Roboto', sans-serif;
}
.underline2 {
    background-color: #13519c;
    height: 6px;
    width: 440px;
    margin: 2em 0 2em auto;
    /* position: relative; */
    /* right: 0; */
    /* margin: 0; */
}
.read-more
{
	font-size:18px;
	line-height: 33px;
	font-family: 'Roboto', sans-serif;	
	padding-top:2em;
	text-align: right;
	display: block;
	text-decoration:underline;
}
.underline
{
	background-color:#13519c;
	height:6px;
	width:440px;
	margin:2em 0;
}
.mar-btm-15px
{
	margin-bottom: 10px;
}
.main-title
{
font-size:33px;
	font-family: 'Signika', sans-serif;
	font-weight: 400;
	letter-spacing: 3px;

}
.contact-info
{
	padding:1em;
}
.inside-main-title
{
	color:#1f6fac;
	font-size:33px;
	font-family: 'Signika', sans-serif;
	font-weight: 400;
	letter-spacing: 3px;
}
.inside-title
{
	font-size:26px;
	font-family: 'Signika', sans-serif;
	font-weight: 300;
	color:#1f6fac;
}
.mobile-hide
{
	display: none;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding:10px 0;

}
.btm-icon
{
	color:#849922;
	font-size:25px;
}
.contact-bx label
{
color:#13519c;
font-family: Helvetica, sans-serif;
}
.form-control
{
	border:1px solid #13519c;
	border-radius: 3px;
	padding-left:4px;
}
.form-group
{
	margin-bottom: 2em;
}
.banner
{
	background: url(../images/disha-chemical.png) center center no-repeat;
	min-height: 550px;
	position: relative;
	background-size: cover;
	
}
.what-we-ban
{
	background: url(../images/products-disha-ban.png) center center no-repeat;
	min-height: 550px;
	position: relative;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.products-ban
{
	background: url(../images/ban3.png) center center no-repeat;
	min-height: 550px;
	position: relative;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.strength-ban
{
	background: url(../images/ban4.png) center center no-repeat;
	min-height: 550px;
	position: relative;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact-ban
{
	background: url(../images/ban5.png) center center no-repeat;
	min-height: 550px;
	position: relative;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner-text
{
	color:#fff;
	font-size:36px;
	font-family: Helvetica, sans-serif;
	padding-top:4em;
	font-weight: 600;
}
.footer-pha:hover
{
	color:#fff;
}
/*Reset Close*/
/*About Us*/
.top-contact
{
display: flex;
justify-content: flex-end;
}
.top-contact-link
{
color:#13519c;
margin:0 14px;
font-family: 'Roboto', sans-serif;
font-weight: 300;
}
.about-us
{
	padding:0em 0 4em 0;

}
.about-info-inside
{
	color:#13519c;
	font-family: Helvetica, sans-serif;
}
.products-list-item li
{
    border-left: 5px solid #13519c;
    height: 125px;
    padding: 6px 16px;
    margin-bottom: 3em;
}

.sub-span
{
	font-size: 16px;
	font-weight: 500;
}
/*About us*/
/*Product*/
.products-list
{
	padding:0em 3em;
}
.product-list-nm
{
	color:#13519c;
	font-size:19px;
	font-weight:600;
	padding-bottom: 8px;
}
.f-22
{
	font-size:22px;
}
/*product close*/
.about-two__img {
    padding-right: 30px;
    position: relative;
    display: inline-block;
}
.about-two__img-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    -webkit-transform: translateX(10%) translateY(50%);
    transform: translateX(10%) translateY(50%);
}

.btm-bnanner
{
	background: url(../images/ban2.png) center center no-repeat fixed;
	padding:150px 0;
	background-size: cover;
}
.solution-bx
{
	margin-bottom:20px;
	padding:20px;
}
.solution-bx img
{
display: block;
margin:0 auto;
}
.solution-bx h1
{
	color: #13519c;
    text-align: center;
    font-size: 18px;
    margin: 20px 0;
    font-weight: 550;
}
.contact-bx
{
	padding:2em;
	margin:2em 0;
}
.margin-bottm-1em
{
	margin-bottom:1em;
}
.title-mt-mb
{
	margin-top:1em;
	margin-bottom: 1em
}
.contact-bx1
{
	margin:3em 0;

}
/* The container */
.product-list-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  color:#13519c;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.product-list-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border:1px solid #13519c;
}

/* On mouse-over, add a grey background color */
.product-list-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.product-list-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.product-list-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.product-list-checkbox .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom-shape-divider-bottom-1612946516 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1612946516 svg {
    position: relative;
    display: block;
    width: calc(295% + 1.3px);
    height: 166px;
}

.custom-shape-divider-bottom-1612946516 .shape-fill {
    fill: #FFFFFF;
}
/*Footer*/
.footer
{
	background-color:#1f6fac;
	padding:4em 0 2em 0;
}

.footer-title
{
	color:#FFF;
	font-size:20px;
	margin-bottom:14px;
	font-family: 'Signika', sans-serif;
	font-weight: bold;
}

.footer-list li
{
	padding:0;
	margin:0 0 10px 0;
}
.footer-arrow
{
	color:#fff;
}
.footer-link
{
	color:#fff;
	text-decoration: none;
	transition:0.5s all;
}

.footer-link:hover
{
color:#fff;
margin-left:10px;
text-decoration: none;
}
.footer-bottom
{
	padding:3em 0 0 0;
	background-color:#1f6fad;
}
.footer-bottom-hr
{
	padding:1em 0 0 0;
	border-top:1px solid #d6d2d2;
}
.social-link
{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.social-btn
{
	color:#55a5e2;
	font-size:22px;
	margin-left:15px;
}


/*Medium devices (tablets, 768px and up)*/
@media (max-width: 768px) { 

.top-contact
{
	display: none;
}
.p-left-4em
{
	padding-left:2em;
	padding-right:2em;
}
.products-list
{
	padding:2em 1em;
}
.mobile-hide
{
	display: none;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding:10px 0;

}
}

/**/

@media (max-width: 600px) { 

.p-left-4em
{
	padding-left:2em;
	padding-right:2em;
}
.mobile-hide
{
	display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    border-top:1px solid #ccc;
    width: 100%;
    background: #fff;
    padding:4px 0;

}
#pagepiling .section
{
	height:100vh;
}
.about-two__img-1
{
	width: 100%;
}
.strength-ban
{
	background-size: auto;
}
.footer-bottom
{
	padding:0em 0 14% 0;
}
.about-info{
	padding:11em 1em 5em 1em;
}
.products-list-item li
{
	padding-bottom: 2em;
}
.section .sec5
{
	height:auto;
}
.strength-ban, .contact-ban, .products-ban, .what-we-ban, .banner
{
	background-size: auto;
	
}
.footer-title
{
	margin:20px 0 0 0;
}
.inside-main-title, .main-title
{
	font-size: 28px;
}
.banner-text
{
	font-size:29px;
	padding-top:2em;
}
.contact-bx1
{
	margin:1em 0;
}
.contact-bx
{
	padding:0;
	margin:0;
}
.products-list
{
	padding:0 1em;
}
.underline
{
	width:50%;
}
.about-us
{
	padding:0 0 3em 0;
}
.footer-pha
{
	text-align: center;
}
.social-link
{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10x 0;
	padding: 16px 0 0 0;
}
.top-contact
{
	display: none;
}
.lr-pd-2em
{
	padding:0 1em;
}
}


