/*font embedding*/

@font-face {
  font-family: 'Montserrat-Light';
  src: url('../font/Montserrat-Light.eot?#iefix') format('embedded-opentype'),  
       url('../font/Montserrat-Light.otf')  format('opentype'),
	   url('../font/Montserrat-Light.woff') format('woff'), 
	   url('../font/Montserrat-Light.ttf')  format('truetype'), 
	   url('../font/Montserrat-Light.svg#Montserrat-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url('../font/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),  
       url('../font/Montserrat-Regular.otf')  format('opentype'),
	   url('../font/Montserrat-Regular.woff') format('woff'), 
	   url('../font/Montserrat-Regular.ttf')  format('truetype'), 
	   url('../font/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url('../font/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),  
       url('../font/Montserrat-Bold.otf')  format('opentype'),
	   url('../font/Montserrat-Bold.woff') format('woff'), 
	   url('../font/Montserrat-Bold.ttf')  format('truetype'), 
	   url('../font/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}

/*common css*/

body{
	font-family: 'Montserrat-Light';
	font-size:14px;
	padding-top:101px;
}

.freeze{
	overflow:hidden;
}

body, a{
	color:#000;
}

ul, li{
	padding:0;
	list-style-type:none;
}

h1, h2, h3, h4, h5, h6{
	font-weight:normal;
	margin:0;
}

p{
	margin-top:0;
	margin-bottom:10px;
}

.container-fluid{
	padding:0px 100px;
}

.section-title{
	font-family: 'Montserrat-Bold';
	font-size: 35px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 30px;
}

.innersection{
	padding: 100px 0px;
}

.btn{
	padding: 10px 25px;
	position: relative;
	box-shadow: 3px 3px 8px rgba(0,0,0,0.4);
	border:none;
	border-radius: 0px;
}

.btn-primary, .btn-primary:hover{
	color: #fff !important;
	background-color: #63a43f;
}

.btn-primary:before{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:10px;
	left:10px;
	border:1px solid #63a43f;
	transition:all 0.5s ease;
}

.btn-primary:hover:before{
	top:0px;
	left:0px;
}

.btn-primary:focus, .btn-primary:active{
	background-color: #63a43f !important;
	border:none !important;
	box-shadow:none !important;
}

.margin-top-50{
	margin-top:50px;
}

.text-underline{
	text-decoration:underline;
}

.margin-top-30{
	margin-top:30px;
}

.margin-top-0{
	margin-top:0px !important;
}

.hidden{
	display:none;
}

@media (min-width: 0px) and (max-width: 1440px) {
	.container-fluid{
		padding:0px 50px;
	}
}

@media (min-width: 0px) and (max-width: 1100px) {
	.section-title {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.innersection {
		padding: 50px 0px;
	}
}

@media (min-width: 0px) and (max-width: 768px) {
	.container-fluid{
		padding:0px 20px;
	}
	.section-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.innersection {
		padding: 20px 0px;
	}
}

/*preloader*/
/* 
.preloader{
	position:fixed;
	z-index:5000;
	width:100%;
	height:100%;
	background-color:#fff;
	top:0;
	left:0;
	transition:all 0.5s ease;
}

.preloader.hide{
	opacity:0;
	visibility:hidden;
} 

.preloader-content{
	text-align:center;
	position:relative;
	top:50%;
	transform:translateY(-50%);
} 

.preloader-content img{
	width:200px;
	display:inline-block;
	margin-bottom:15px;
}

.preloader-content p{
	font-family: 'Montserrat-Light';
	margin:0px;
	font-size:16px;
	color:#333;
	letter-spacing:5px;
} */

/*header*/

/*Mobile Version - Since 1974 Text*/
@media (min-width: 0px) and (max-width: 768px){
	.tagLine{
		font-size: 8px;
		letter-spacing: 0.23rem;
		/* font-style: italic; */
		padding-top: 5px;
		padding-left: 13px;
		color: #63a43f;
	}	
} 

/*iPad Version - Since 1974 Text*/
@media (min-width: 768px) and (max-width: 1024px){
	.tagLine{
		font-size: 8px;
		/* font-style: italic; */
		letter-spacing: 0.23rem;
		padding-top: 5px;
		padding-left: 13px;
		color: #63a43f;
	}	
} 

/*Tab Version - Since 1974 Text*/
@media (min-width: 1024px) and (max-width: 1440px){
	.tagLine{
		font-size: 8px;
		letter-spacing: 0.23rem;
		/* font-style: italic; */
		padding-top: 5px;
		padding-left: 15px;
		color: #63a43f;
	}	
} 

/*Desktop Version - Since 1974 Text*/
 @media (min-width: 1440px) and (max-width: 2560px){
	.tagLine{
		font-size: 10px;
		letter-spacing: 0.25rem;
		/* font-style: italic; */
		padding-top: 5px;
		padding-left: 22px;
		color: #63a43f;
	}	
}  

header{
	background-color:#f9f9f9;
	padding:10px 0px;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:200;
	transition:all 0.5s ease;
}




.with-shadow{
	box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
}

.brandname img{
	width:130px;
}
nav{
	text-align:right;
	margin-top:20px;
}

nav ul li{
	display:inline-block;
}

nav ul li a{
	font-size:12px;
	text-transform:uppercase;
	display:inline-block;
	margin:0px 5px;
	transition:all 0.5s ease;
}

nav ul li a.cta{
	padding:10px 25px;
	color:#fff;
	background-color:#63a43f;
	position:relative;
	box-shadow:3px 3px 8px rgba(0,0,0,0.4);
}

nav ul li a.cta:before{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:10px;
	left:10px;
	border:1px solid #63a43f;
	transition:all 0.5s ease;
}

nav ul li a:hover, nav ul li a.active{
	text-decoration:none;
	color:#63a43f;
}
nav ul li a.cta:hover{
	color:#fff;
}
nav ul li a.cta:hover:before{
	top:0;
	left:0;
}

.hamburger{
	display: none;
	float: right;
	font-size: 25px;
	margin-top: 10px;
	position: relative;
	z-index: 300;
}

.hamburger:hover{
	text-decoration:none;
	color:#000;
}

@media (min-width: 0px) and (max-width: 1360px) {
	nav ul li a{
		margin: 0px 5px;
	}
	
	.brandname img{
		width: 130px;
	}
}

@media (min-width: 0px) and (max-width: 1200px) {
	body{
		padding-top: 83px;
	}
	nav {
		margin-top: 15px;
	}
	nav ul li a{
		margin: 0px 3px;
		font-size:12px;
	}
	nav ul li a.cta {
		padding: 7px 15px;
	}
	.brandname img{
		width: 100px;
	}
}

@media (min-width: 0px) and (max-width: 991px) {
	.hamburger{
		display: inline-block;
	}
	.top-nav{
		position:fixed;
		top:0;
		left:0;
		width:100%;
		height:100%;
		visibility:hidden;
		opacity:0;
		z-index:200;
		transition:all 0.5s ease;
		background-color:#fff;
	}
	
	.top-nav.open{
		visibility:visible;
		opacity:1;
	}
	
	nav{
		margin-top: 0;
		transform: translateY(-50%);
		position: relative;
		top: 50%;
	}
	
	nav ul, nav ul li{
		display:block;
		text-align:center;
	}
	
	nav ul li a{
		padding:10px 0px;
		margin:0;
	}
}

/*banner*/

.banner-slider{
	background-color:#f9f9f9;
	padding-bottom:50px
}

.banner-slider .slides{
	position:relative;
	overflow:hidden;
	padding-left:30%;
}

.banner-slider .slides img{
	width:100%;
}

.banner-slider .slides .slide-text {
    padding: 20px;
    background-color: #63a43f;
    display: inline-block;
    width: 650px;
    position: absolute;
	top:50%;
	transform:translateY(-50%);
    left: 10%;
	box-shadow:-15px 15px 15px rgba(0,0,0,0.2);
}

.banner-slider .slides .slide-text h1{
	font-size:60px;
	color:#fff;
	text-transform:uppercase;
	line-height:60px;
}

.banner-slider .slides .slide-text a{
	display:inline-block;
	padding:15px 25px;
	background-color:#000;
	color:#fff;
	letter-spacing:2px;
	margin-top:50px;
	text-transform:uppercase;
	font-size:16px;
	box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
	transition: all 0.5s ease;
}

.banner-slider .slides .slide-text a:hover{
	transform: scale(1.1,1.1);
}

.banner-slider .slides .slide-text a.outlined-btn{
	background-color: #63a43f;
	border: 1px solid #fff;
	margin-left: 10px;
}

.banner-slider .slides .slide-text a:hover{
	text-decoration:none;
}

.banner-slider .slick-arrow {
    border: none;
	background-color: rgba(0,0,0,0.5);
	text-indent: -9999px;
	display: inline-block;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 50;
	outline: none;
}

.banner-slider .slick-prev {
    background-image: url(../images/product-slider/left-arrow.png);
	background-position: 4px 2px;
    left: 0px;
}

.banner-slider .slick-next {
    background-image: url(../images/product-slider/right-arrow.png);
	background-position: 11px 2px;
    right: 0px;
}

@media (min-width: 0px) and (max-width: 1360px) {
	.banner-slider .slides .slide-text{
		width: 550px;
	}
	
	.banner-slider .slides .slide-text h1{
		font-size: 40px;
		line-height: 45px;
	}
	
	.banner-slider .slides .slide-text a{
		margin-top: 30px;
		font-size: 14px;
		display: block;
		width: 100%;
		text-align: center;
		border: 1px solid #000;
	}

	.banner-slider .slides .slide-text a.outlined-btn{
		margin-left: 0px;
	}
}

@media (min-width: 0px) and (max-width: 991px) {
	.banner-slider .slides .slide-text{
		width: 450px;
	}
	
	.banner-slider .slides .slide-text h1{
		font-size: 30px;
		line-height: 35px;
	}
	
	.banner-slider .slides .slide-text a{
		margin-top: 20px;
		padding: 10px 20px;
		font-size: 13px;
	}
}

@media (min-width: 0px) and (max-width: 768px) {
	.banner-slider .slides .slide-text {
		width: 350px;
	}
	
	.banner-slider .slides .slide-text h1 {
		font-size: 20px;
		line-height: 25px;
	}
	
	.banner-slider .slides .slide-text a{
		margin-top: 20px;
		padding: 10px 20px;
		font-size: 13px;
	}
}

@media (min-width: 0px) and (max-width: 580px) {
	.banner-slider .slides .slide-text {
		width: 300px;
	}
	.banner-slider .slides .slide-text h1 {
		font-size: 16px;
		line-height: 20px;
	}
	.banner-slider .slides .slide-text a{
		margin-top: 15px;
		padding: 10px 20px;
		font-size: 11px;
	}
}

@media (min-width: 0px) and (max-width: 430px) {
	.banner-slider .slides{
		padding-left:0px;
	}
	
	.banner-slider .slides .slide-text{
		position:static;
		width:100%;
		transform:none;
		text-align:center;
	}
}

/*about us*/

.aboutus-highlight {
    font-size: 20px;
    line-height: 40px;
	padding: 0px 200px;
	color:#606060;
	margin-bottom: 30px;
}

.highlight-section{
	padding: 40px;
	border:1px solid #63a43f;
	height: 100%;
}

.highlight-section h3{
	font-family: 'Montserrat-Bold';
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 30px;
	text-align: center;;
}

.highlight-section p{
	color:#606060;
	text-align: center;
	line-height: 30px;
}

@media (min-width: 0px) and (max-width: 1360px) {
	.aboutus-highlight{
		padding: 0px 150px;
	}
}

@media (min-width: 0px) and (max-width: 1100px) {
	.aboutus-highlight{
		padding: 0px 70px;
	}
	
	.aboutus-highlight {
		font-size: 16px;
		line-height: 32px;
	}
}

@media (min-width: 0px) and (max-width: 991px) {
	.highlight-section{
		margin-bottom:30px;
		height:auto;
	}
}

@media (min-width: 0px) and (max-width: 768px) {
	.aboutus-highlight{
		padding: 0px;
		font-size: 14px;
    	line-height: 27px;
	}

}

/*product*/

.products{
	background-color: #63a43f;
}

.products .section-title{
	color:#fff;
}

.productslider ul{
	position: relative;
}
.productslider ul li{
	padding:0px 15px;
	margin-top: 30px;
	transition: all 0.5s ease;
}

.productslider ul li a{
	display: block;
	border:10px solid #82b665;
	transition: all 0.5s ease;
}
.productslider ul li a img{
	width:100%;
	transition: all 0.5s ease;
}

.productslider .slick-arrow{
	border:none;
	background-color:transparent;
	text-indent: -9999px;
	display: inline-block;
	width:52px;
	height: 82px;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 50;
	outline: none;
}

.productslider .slick-prev{
	background-image: url(../images/product-slider/left-arrow.png);
	left: 0px;
}

.productslider .slick-next{
	background-image: url(../images/product-slider/right-arrow.png);
	right: 0px;
}

.slick-slide{
	transition:all 0.5s ease;
	opacity:0;
	visibility: hidden;
}

.slick-slide.slick-active{
	opacity:1;
	visibility: visible;
}

.slick-slide.slick-current.slick-active.slick-center li{
	padding: 0px;
	margin-top: 0px;
}

.slick-slide.slick-current.slick-active.slick-center a{
	border: none;
}

.products .btn-primary, .products .btn-primary:hover, .products .btn-primary:focus, .products .btn-primary:active {
    color: #fff !important;
    background-color: #000 !important;
}

.products .btn-primary::before {
	border: 1px solid #000;
}

@media (min-width: 0px) and (max-width: 991px) {
	.products .container-fluid{
		padding:0px 15px;
	}
	.productslider ul li a {
		border: 6px solid #82b665;
	}
}

/*core values*/

.corevalues{
	background-image: url(../images/corevalues-bg.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.corevalues .section-title{
	color:#fff;
}

.corevalues p{
	font-size: 20px;
	line-height: 40px;
	padding: 0px 200px;
	color: #fff;
	margin-bottom: 30px;
}

@media (min-width: 0px) and (max-width: 1360px) {
	.corevalues p{
		line-height: 40px;
		padding: 0px 150px;
	}
}

@media (min-width: 0px) and (max-width: 1100px) {
	.corevalues p{
		font-size:16px;
		line-height: 30px;
		padding: 0px 100px;
	}
}

@media (min-width: 0px) and (max-width: 991px) {
	.corevalues p{
		padding: 0px 70px;
	}
}

@media (min-width: 0px) and (max-width: 768px) {
	.corevalues p{
		padding: 0px 50px;
		font-size:14px;
	}
}

@media (min-width: 0px) and (max-width: 400px) {
	.corevalues p{
		padding: 0px 30px;
	}
}

/*team*/

.management-team{
	background-image:url(../images/team/background.jpg);
	background-position:top left;
	background-size:contain;
	background-repeat:no-repeat;
}

.founder{
	text-align: center;
}

.founder h4{
	margin-top: 30px;
}
.founder h4, .team-member h4{
	font-family: 'Montserrat-Bold';
	font-size: 30px;
}

.founder p.designation, .team-member p.designation{
	color:#63a43f;
	font-size: 30px;
}

.team-member{
	background-color: #fff;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
	border:1px solid #63a43f; 
	padding: 40px;
	padding-left: 230px;
	position: relative;
	margin-bottom: 50px;
}

.team-member img{
	position: absolute;
	top:40px;
	left: 40px;
}

.team-member p{
	color:#606060;
	font-size: 20px;
	line-height: 40px;
}

@media (min-width: 0px) and (max-width: 991px) {
	.founder img{
		width:200px;
	}
	.founder h4, .team-member h4, .founder p.designation, .team-member p.designation {
		font-size: 20px;
	}
	.team-member p {
		font-size: 16px;
		line-height: 30px;
	}
	.management-team{
		background-image:none;
	}
}

@media (min-width: 0px) and (max-width: 768px) {
	.team-member{
		padding-left:40px;
	}
	.team-member img{
		width:80px;
		position:static;
		display:block;
		margin-bottom:20px;
	}
}

/*sister concerns*/

.sisterconcerns .container-fluid, .sisterconcerns .col-sm-12, .sisterconcerns .col-md-12, .sisterconcerns .col-lg-6{
	padding: 0;
}

.sisterconcerns .row{
	margin: 0;
}
.sisterconcerns .sc-content{
	background-color: #63a43f;
	padding: 50px;
}

.sisterconcerns .sc-content .section-title{
	color:#fff;
	text-align: left;
}

.sisterconcerns .sc-content ul li{
	margin-bottom: 15px;
}
.sisterconcerns .sc-content ul li a{
	color:#fff;
	font-size: 30px;
}

.sisterconcerns .sc-bg{
	background-image: url(../images/sister-concern/background.jpg);
	background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}

.sisterconcerns .sc-content{
	height: 100%;
}

.sister-concern-list li .m-checklist{
	color:#fff;
	font-size:30px;
	display:inline-block;
	margin-right:10px;
}


/*Google Map Direction*/
/* .googlelocation .container-fluid, .googlelocation .col-sm-12, .googlelocation .col-md-12, .googlelocation .col-lg-6{
	padding: 0;
}

.googlelocation .row{
	margin: 0;
}
.googlelocation .map-content{
	background-color: #63a43f;
	padding: 50px;
}

.googlelocation .map-content .section-title{
	color:#fff;
}
.googlelocation .map-content{
	height: 100%;
} */

/*contact us*/

.contactus{
	background-image: url(../images/contact-us/background.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.contactus.innersection{
	padding: 50px 0px;
}

.contactus .section-title, .contactus p, .contactus label, .contactus .form-control, .contactus ul li, .contactus ul li a{
	color:#fff;
}

.contactus p{
	font-family: 'Montserrat-Bold';
	font-size: 20px;
	text-transform: uppercase;
}

.contactus ul li a{
	text-decoration:underline;
}

.contactus .form-group{
	position: relative;
	margin-bottom: 10px;
}

.contactus label{
	margin:0;
	position: absolute;
	top: 15px;
	left: 20px;
	font-weight: normal;
	font-size: 20px;
	z-index: 10;
	transition: all 0.5s ease;
}

.contactus label.zoomout{
	top: 5px;
	left: 12px;
	font-size: 13px;
	color:#63a43f;
}
.contactus .form-control{
	font-family: 'Montserrat-Bold';
	border-radius: 0px;
	background-color: transparent;
	box-shadow: none;
	border: 1px solid #fff;
	padding-top: 30px;
	height: auto;
	position: relative;
	z-index: 50;
	font-size: 20px;
}

.contactus textarea.form-control{
	height: 150px;
	resize: none;
}

.contact-info li{
	position:relative;
	margin-bottom:15px;
	padding-left:40px;
	padding-bottom: 10px;
}

.contactus a.btn.btn-primary:before{
	display:none;
}

@media (min-width: 0px) and (max-width: 768px){
	.address-road{
		padding-left:45px;
	}
	
}

/* @media (min-width: 768px) and (max-width: 1024px){
	.address{
		padding-left:45px;
	}
	
} */
/* @media (min-width: 0px) and (max-width: 1440px){
	.address{
		padding-left:100px;
	}
	
} */
.contactus .btn-primary{
	background-color:#000;
}

.cont-padding{
	padding-left:50px;
}

.contact-icon{
	position: absolute;
	width: 30px;
	height: 30px;
	display: inline-block;
	background-color: #63a43f;
	text-align: center;
	border-radius: 50%;
	padding-top: 8px;
	top:0px;
	left:0px;
}

.social-links a{
	width:40px;
	height:40px;
	border:1px solid #fff;
	border-radius:50%;
	text-align:center;
	color:#fff;
	font-size:20px;
	padding-top:5px;
	margin-right:10px;
}

.social-links a, .social-links a span{
	display:inline-block;
	transition:all 0.5s ease;
}

.social-links a:hover{
	text-decoration:none;
	border:1px solid #63a43f;
}

.social-links a:hover > span{
	color:#63a43f;
}

@media (min-width: 0px) and (max-width: 768px) {
	.contactus p {
		font-size: 14px;
	}
	.cont-padding{
		padding-left:0px;
	}
}

/*footer*/

footer{
	background-color:#212121;
	padding:15px 0px
}

footer p{
	margin:0;
	color:#fff;
	font-size:12px;
}

.credits{
	color:#fff;
	text-align:right;
}


.website-credits {
    display: inline-block;
    margin-right: 10px;
	vertical-align:middle;
}


@media (min-width: 0px) and (max-width: 376px){
	.d-inline-block{
		padding: 0px 72px;
	}
}
@media (min-width: 376px) and (max-width: 415px){
	.d-inline-block{
		padding: 0px 97px; 
	}
}


/* @media (min-width: 376px) and (max-width: 768px){
	.d-inline-block{
		padding-right: 100px;
	}
}  */



.footerlogo {
    border: none;
    display: inline-block;
}

.footerlogo img {
    height: 11px;
    width: auto;
	vertical-align:middle;
}



@media (min-width: 0px) and (max-width: 768px) {
	footer p{
		text-align:center;
	}
}

/*modal*/

.fullmodal{
	background-size:contain;
	width:100%;
	height:100%;
	z-index:500;
	background-color:#fff;
	position:fixed;
	top:0;
	right:-100%;
	transition:all 0.5s ease;
}

.fullmodal.open{
	right:0%;
}

.modal-top{
	text-align:center;
	padding:10px 0px;
	border-bottom:1px solid #CCC;
	margin-bottom:30px;
}

.modal-top img{
	width:150px;
}

.modal-contents{
	padding:0px 50px;
	overflow-y:auto;
	height: calc(100vh - 160px);
}

.closeModal{
	position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
	transition:all 0.5s ease;
}

.closeModal:focus{
	outline:none;
}

.closeModal:hover{
	text-decoration:none;
	transform: rotate(180deg);
	color:#000;
}

.fullmodal h1, .fullmodal h2, .fullmodal h3, .fullmodal h4, .fullmodal h5, .fullmodal h6, .fullmodal p b, .fullmodal li b{
	font-family: 'Montserrat-Bold';
	color:#000;
}

.fullmodal h1{
	font-size:35px;
}

.fullmodal h2{
	font-size:30px;
}

.fullmodal h3{
	font-size:20px;
	margin-top:20px;
	margin-bottom:5px;
}

.fullmodal h4{
	font-size:18px;
}

.fullmodal h5{
	font-size:16px;
}

.fullmodal h1, .fullmodal h2{
	margin-bottom:20px;
}

.fullmodal p{
	font-size: 14px;
	line-height: 20px;
	color: #606060;
	margin-bottom: 10px;
}

.fullmodal ul{
	margin:20px 0px;
}
.fullmodal ul li{
	padding-left:20px;
	margin-bottom:10px;
	position:relative;
	color: #606060;
}

.fullmodal ul li:before{
	position:absolute;
	content:"";
	width:7px;
	height:14px;
	border-right:2px solid #63a43f;
	border-bottom:2px solid #63a43f;
	top:4px;
	left:0;
	transform: rotate(30deg);
}

.modal-contents img{
	width:100%;
	margin-bottom:30px;
}

.modal-contents img.halfwidth{
	width:60%;
}

.modal-contents .seperator{
	height:1px;
	background-color:#CCC;
	margin:50px 0px;
}


.image-thumb{
	display:block;
	margin:15px 0px;
}
.image-thumb img{
	width:100%;
}

.corporate-brand-logo{
	height:50px !important;
	width:auto !important;
	margin-bottom:15px !important;
}

/*lightbox*/
.custom-lightbox, .lightbox-image-holder{
	transition:all 0.5s ease;
	opacity:0;
	visibility:hidden;
}
.custom-lightbox{
	background-color:rgba(0,0,0,0.9);
	position:fixed;
	z-index:1000;
	top:0;
	left:0;
	width:100%;
	height:100%;
	text-align:center;
}

.custom-lightbox .closeLightbox{
	color:#fff;
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 30px;
	transition: all 0.5s ease;
}

.custom-lightbox .closeLightbox:hover {
    text-decoration: none;
    transform: rotate(180deg);
}

.lightbox-image-holder{
	max-width:80%;
	max-height:80%;
	margin:0 auto;
	position:relative;
	top:10%;
	transform:translateY(-50%);
	z-index:1200;
	display:inline-block;
}

.custom-lightbox.show, .lightbox-image-holder.show{
	opacity:1;
	visibility:visible;
}

.lightbox-image-holder.show{
	top:50%;
}

.goPrev, .goNext{
	border: none;
	display: inline-block;
	width: 52px;
	height: 82px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 50;
	outline: none;
}

.goPrev{
	background-image: url(../images/product-slider/left-arrow.png);
	left: 0px;
}

.goNext{
	background-image: url(../images/product-slider/right-arrow.png);
	right: 0px;
}

.goPrev.lock, .goNext.lock{
	display:none;
}

/*career*/
.career{
	width:500px;
	border:1px solid #63a43f;
	padding:20px;
	margin:0 auto;
}

.career .form-group{
	margin-bottom:10px;
}

.career .form-group label{
	display:block;
}

.career .form-group .form-control{
	border-radius:0px;
}

.career .form-group .form-control:focus{
	box-shadow:none;
	border:1px solid #63a43f;
	font-size:14px;
}

.career .form-group .allowExtMessage{
  font-size: 10px;
  /*color:  #616161;*/
  color:  #63a43f; 
}

.recapchaContent {
    width: 197px;
    height: 80px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
}

@media (min-width: 0px) and (max-width: 620px) {
	.career{
		width:100%;
	}
}

/*****************************Go to top arrow css******************************/

.goto-top{
	position:fixed;
	width:50px;
	height:50px;
	border-radius:50%;
	background-color:#000;
	display:block;
	border:none;
	bottom:30px;
	right:50px;
	z-index:400;
	text-align:center;
	font-size:30px;
	opacity:0;
	visibility:hidden;
	transition:all 0.5s ease;
	box-shadow:3px 3px 10px rgba(0,0,0,0.3);
}

.goto-top.show{
	opacity:1;
	visibility:visible;
}

.goto-top:hover, .goto-top{
	color:#fff;
}


.success, .error{
	padding:20px 15px;
	color:#fff;
	font-size:16px;
	margin-bottom:30px;
	border-radius:3px;
	display:none;
}

.success{
	background-color:#63a43f;
}
.error{
	background-color:#EC0047;
}


/*****************************clients section css******************************/

.clients{
	text-align:center;
	background-color:#f9f9f9;
}
.clients img{
	height:50px;
	width:auto;
	margin:15px 30px;
	filter: grayscale(100%);
	transition:all 0.5s ease;
}

.clients img:hover{
	filter: grayscale(0%);
}

@media (min-width: 0px) and (max-width: 768px) {
	.clients img{
		display:block;
		margin:30px auto;
		height:auto;
		width:150px;
	}
}

.map-wrapper{
	height:calc(100vh - 160px);
	position:relative;
}

.map-wrapper iframe{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}




