


/* Table of Content
==================================================
	#Homepage Styles
	#Page Styles
	#Media Queries
	#Font-Face */
html, body, #wrapper {
 height: 100%;
 font-family: 'Open Sans', sans-serif;
 } 

body > #wrapper {height: auto; min-height: 100%; background:#fff ;
	}
body #main{
	  width:100%;
	  padding:0;
	  margin:0 auto;
	  /*padding-top: 80px;*/
	}
*{
	padding:0;
	margin:0;
	}

table{
	width: 100%;
}
table, th, td {
    border: 1px solid #1a5f80;
    border-collapse: collapse;    
}
th, td {
    padding: 10px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}
th {
    background-color: #104660;
    color: #fff;
}

a{
	cursor: pointer;
	display: inline-block;
}

span{
	display: inline-block;
}

p{
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 22px;
	color: #000;
	padding: 0 0 15px 0;
}

/* #Grid system
================================================== */
.container{
	width:1170px;
	margin:0 auto;
	}
.container:before, .container:after, .row:before, .row:after{
	content:"";
	display:table;
	}
.container:after, .row:after{clear:both;}
.row{
	margin-left:-10px;
	margin-right:-10px;
	}
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{
	position:relative;
	min-height:1px;
	padding-left:10px;
	padding-right:10px;
	float:left;
	}

.col-sm-12{width:100%;}
.col-sm-11{width:91.66666667%;}
.col-sm-10{width:83.33333333%;}
.col-sm-9{width:75%;}
.col-sm-8{width:66.66666667%;}
.col-sm-7{width:58.33333333%;}
.col-sm-6{width:50%;}
.col-sm-5{width:41.66666667%;}
.col-sm-4{width:33.33333333%;}
.col-sm-3{width:25%;}
.col-sm-2{width:16.66666667%;}
.col-sm-1{width:8.33333333%;}
.flt-right { float: right; }
.flt-left { float: left; }

.clr{
	clear:both;
	}

/* =Header
-------------------------------------------------------------- */
header {
	width: 100%;
	position: fixed;
	top:0px;
	left: 0;
	z-index: 999;
	padding:1% 0;
	background:transparent;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);*/
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
header .container{
	width: 90%;
	margin: auto;
	display: flex;
	align-items: center;
	/*justify-content: space-between;*/
}
header .logo {
	width:250px;
	/*float: left;*/
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	/*padding:5px 0 0 0;*/
}
header nav {
	/*display: inline-block;
	float: right;
	padding: 0% 0% 0% 0%;
	background-color: transparent;
	margin-top: 5px;
	width: 68%;*/
}
header.smaller {
	top:0;
	background-color: transparent;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	background:#fff;
	padding: 0.5% 0;
}
header.smaller .logo {
	width: 200px;
}
header.smaller nav {
	display: inline-block;
	float: left;
	/*padding:0% 0% 0% 7%;
	margin-top: 1.5%;*/
}

header .menu_nav{
	margin: auto 0 auto auto;
}
header .menu_nav a{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
}
header .menu_nav a .three_bars{
	width: 30px;
	height: 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
header .menu_nav a .three_bars span.bar{
	width: 100%;
	height: 2px;
	background: #000;
	transition: all 0.3s;
}
header .menu_nav a:hover .three_bars span.bar.one{
	transform: translateX(-15px);
}
header .menu_nav a:hover .three_bars span.bar.three{
	transform: translateX(-15px);
}
header .menu_nav a .text{
	font-family: 'Noto Serif Display', serif;
	font-size: 22px;
	line-height: 20px;
	color: #000;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 0 0 10px;
}
header .menu_nav nav.main_menu{
	position: absolute;
	width: 50vw;
	height: 100vh;
	background: #eceaeb;
	right: 0;
	top: 0;
	transform: translateX(50vw);
	opacity: 0;
	transition: all 0.5s;	
}
header .menu_nav nav.main_menu.menu_active{
	transform: translateX(0);
	opacity: 1;
}
header .menu_nav nav.main_menu .close_menu{
	height: 15vh;
	display: flex;
	align-items: center;
	padding: 0 30px;
}
header .menu_nav nav.main_menu .close_menu a{
	position: relative;
	height: 20px;
	width: 35px;
	display: flex;
    align-items: center;
    justify-content: end;
}
header .menu_nav nav.main_menu .close_menu a .close_x::before{
	position: absolute;
	content: '';
	left: 0;
	top: calc(50% - 1px);
	width: 80%;
	height: 2px;
	background: #000;
	transform: rotateZ(45deg);
	transition: all 0.3s;
}
header .menu_nav nav.main_menu .close_menu a:hover .close_x::before{
	transform: none;
}
header .menu_nav nav.main_menu .close_menu a .close_x::after{
	position: absolute;
	content: '';
	left: 0;
	top: calc(50% - 1px);
	width: 80%;
	height: 2px;
	background: #000;
	transform: rotateZ(-45deg);
	transition: all 0.3s;
}
header .menu_nav nav.main_menu .close_menu a:hover .close_x::after{
	transform: none;
}
header .menu_nav nav.main_menu .close_menu a .close_arrow{
	border-left: 12px solid #000;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	opacity: 0;
	transition: all 0.3s;
}
header .menu_nav nav.main_menu .close_menu a:hover .close_arrow{
	opacity: 1;
}
header .menu_nav nav.main_menu ul.menu_options li{
	display: block;
	text-align: center;
}
header .menu_nav nav.main_menu ul.menu_options li a{
	font-family: 'Noto Serif Display', serif;
	color: #000;
	font-size: 40px;
	line-height: 40px;
	font-weight: 600;
	padding: 0 0 15px 0;
	margin:0 0 25px 0;
	letter-spacing: 3px;
	display: inline-block;
	transition: all 0.3s;
	position: relative;
	z-index: 1;
}
header .menu_nav nav.main_menu ul.menu_options li a:hover{
	background: #EBEBEB20;
	color: #facb4d;
}
header .menu_nav nav.main_menu ul.menu_options li a::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	background: #facb4d;
	left: 0;
	bottom: 0;
	z-index: 2;
	transition: all 0.3s;
}
header .menu_nav nav.main_menu ul.menu_options li a:hover::before{
	width: 0;
	left: 50%;
	z-index: 1;
}
header .menu_nav nav.main_menu ul.menu_options li a::after{
	position: absolute;
	content: '';
	width: 0;
	height: 2px;
	background: #1c3a30;
	left: 50%;
	bottom: 0;
	z-index: 1;
	transition: all 0.3s;
}
header .menu_nav nav.main_menu ul.menu_options li a:hover::after{
	width: 100%;
	left: 0;
	z-index: 2;
}

.banner .owl-theme .owl-nav [class*=owl-]{
	position: absolute;
    /*left: 0;*/
    top: calc(50% - 23px);
}
.banner .owl-theme .owl-nav .owl-prev{
	left: 20px;
}
.banner .owl-theme .owl-nav .owl-next{
	right: 20px;
}
.banner .owl-theme .owl-nav [class*=owl-] span{
	    display: inline-block;
    font-size: 80px;
    font-family: fontawesome;
    line-height: 25px;
    padding: 0 0 20px 0;
}


@keyframes arrow_animation{
	0%{
		transform: translateX(0);
	}
	50%{
		transform: translateX(5px);
	}
	100%{
		transform: translateX(0);
	}
}

.home_banner .five_sectns{
	display: flex;
	flex-wrap: wrap;
}
.home_banner .five_sectns .width_20{
	width: 20%;
}
.home_banner .five_sectns a.width_20{
	display: block;
	position: relative;
	overflow: hidden;
}
.home_banner .five_sectns a.width_20 .img_box{
	width: 100%;
}
.home_banner .five_sectns a.width_20 .img_box img{
	width: 100%;
    height: 100vh;
    object-fit: cover;
    transition: all 0.5s;
}
.home_banner .five_sectns a.width_20:hover .img_box img{
	transform: scale(1.05);
}
.home_banner .five_sectns a.width_20 .over_letter{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
	background: #fff;
	user-select: none;
	-webkit-user-select: none;
}
.home_banner .five_sectns  a.width_20:nth-child(1) .over_letter{
	background: #def0e7;
}
.home_banner .five_sectns  a.width_20:nth-child(2) .over_letter{
	background: #eef5e0;
}
.home_banner .five_sectns  a.width_20:nth-child(3) .over_letter{
	background: #c4d6e5;
}
.home_banner .five_sectns  a.width_20:nth-child(4) .over_letter{
	background: #eeece0;
}
.home_banner .five_sectns  a.width_20:nth-child(5) .over_letter{
	background: #a0cbe1;
}
.home_banner .five_sectns a.width_20:hover .over_letter{
	background: transparent;
}
.home_banner .five_sectns a.width_20 .over_letter span{
	font-family: 'Noto Serif Display', serif;
	font-size: 250px;
	line-height: 210px;
	font-weight: 600;
	color: #fff;
	-webkit-text-stroke: 2px #1c3a30;
	/*transition: all 0.3s;*/
	user-select: none;
	-webkit-user-select: none;
}
.home_banner .five_sectns  a.width_20:nth-child(odd) .over_letter span{
	margin: 0 0 35%;
}
.home_banner .five_sectns  a.width_20:nth-child(even) .over_letter span{
	margin: 35% 0 0;
}
.home_banner .five_sectns a.width_20:hover .over_letter span{
	/*-webkit-text-stroke: 0px #fff;*/
	transition: all 0.3s;
	color: #1c3a30;
}

.heading{
	font-size: 50px;
	line-height: 60px;
	font-weight: 600;
	color: #006035;
	font-family: 'Noto Serif Display', serif;
	padding: 0 0 15px;
}
.title{
	font-size: 30px;
	line-height: 35px;
	font-weight: 600;
	color: #16332b;
	font-family: 'Noto Serif Display', serif;
	padding: 0 0 15px;
}

.why_roots{
	background: #f5f5f5;	
}
.why_roots .inner_container{
	padding: 40px 0 70px 0;
}
.why_roots .img_text_box{
	display: flex;
	justify-content: center;
	align-items: center;
}
.why_roots .img_text_box.first_box{
	padding: 40px 0;
}
/*.why_roots .img_text_box.second_box{
	align-items: end;
}*/
/*.why_roots .img_text_box.third_box{
	padding: 70px 0 0 0;
}*/
/*.why_roots .img_text_box.third_box .img_box{
	padding: 0 25px;
}*/
.why_roots .img_text_box .col-sm-6{
	padding: 0;
}
.why_roots .img_text_box .col-sm-6 .img_box{
	text-align: center;
}
.why_roots .img_text_box .col-sm-6 .img_box img{
	width: 500px;
}
.why_roots .img_text_box .info_box .learn_more a{
	font-size: 16px;
	background: #556b64;
	padding: 5px 20px;
	color: #fff;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    /*text-transform: uppercase;*/
}
.why_roots .img_text_box .info_box .learn_more a span.arrow{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0 0 0 10px;
	transition: all 0.3s;
}
.why_roots .img_text_box .info_box .learn_more a:hover span.arrow{
	animation: arrow_animation 1s infinite forwards;
}
.why_roots .img_text_box .info_box .learn_more a span.arrow::before{
	content: '';
	position: absolute;
	right: 10%;
	top: calc(50% - 1px);
	background: #fff;
	width: 80%;
	height: 2px;
    transition: all 0.3s;
}
.why_roots .img_text_box .info_box .learn_more a span.arrow::after{
	content: '';
	position: absolute;
	right: 0;
	top: calc(50% - 6px);
	border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transition: all 0.3s;
}

/*industries_served*/
.industries_served{
	background: url(../images/industries-served-bg.jpg) no-repeat;
	background-size: cover;
}
.industries_served .info_box{
	padding: 50px 0 0 0;
}
.industries_served .info_box .text_box{
	padding: 0 0 10px 0;
}
.industries_served .read_more a{
	font-size: 16px;
	font-weight: 600;
	/*background: #1c3a30;*/
	border: 1px solid #1c3a30;
	padding: 5px 20px;
	color: #000;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    /*text-transform: uppercase;*/
}
.industries_served .read_more a span.arrow{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0 0 0 10px;
}
.industries_served .read_more a:hover span.arrow{
	animation: arrow_animation 1s infinite forwards;
}
.industries_served .read_more a span.arrow::before{
	content: '';
	position: absolute;
	right: 10%;
	top: calc(50% - 1px);
	background: #000;
	width: 80%;
	height: 2px;
    transition: all 0.3s;
}
.industries_served .read_more a span.arrow::after{
	content: '';
	position: absolute;
	right: 0;
	top: calc(50% - 6px);
	border-left: 10px solid #000;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transition: all 0.3s;
}
.industries_served .right_graphic{
	position: relative;
	margin: -20px 0 0 0;
	transform-origin: 60% 42%;
	animation: float_animation 5s infinite;
}
@keyframes float_animation{
	0%{
		transform: translate3d(0, 5px, 0);
	}
	50%{
		transform: translate3d(0px, -5px, 0);
	}
	100%{
		transform: translate3d(0, 5px, 0);
	}
}
.industries_served .right_graphic .overlay_title{
	font-size: 45px;
	line-height: 45px;
	font-weight: 700;
	color: #1d5732;
}
.industries_served .right_graphic .overlay_title.nutra{
	position: absolute;
    top: 7%;
    left: 40%;
}
.industries_served .right_graphic .overlay_title.food{
	position: absolute;
    top: 76%;
    left: 5%;
}
.industries_served .right_graphic .overlay_title.pharma{
	position: absolute;
    top: 76%;
    right: -15%;
}

/*our_facility*/
.our_facility{
	position: relative;
}
.our_facility .img_box img{
	width: 100%;
}
.our_facility .info_overlay_box{
	position: absolute;
    width: 100%;
    height: 30%;
    left: 0;
    top: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff42;
}
.our_facility .info_overlay_box .info_box{
	/*background: #fff;
	padding: 30px 50px 30px 40px;*/
	display: flex;
}
.our_facility .info_overlay_box .info_box .heading{
	/*color: #000;*/
}
.our_facility .info_overlay_box .info_box ul{
	padding: 0 0 0 4vw;
}
.our_facility .info_overlay_box .info_box ul li{
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	padding: 0 0 15px 12px;
	color: #000;
	/*list-style: disc;
	list-style-position: inside;*/
	position: relative;
}
.our_facility .info_overlay_box .info_box ul li::before{
	position: absolute;
	left: 0;
	top: 8px;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #000;
}
.our_facility .info_overlay_box .info_box ul li:last-child{
	padding: 0 0 0 12px;
}

/*product_expertise*/
.product_expertise{
	background: #f5f5f5;
}
.product_expertise .inner_container{
	padding: 50px 0;
	border-bottom: 1px solid #073444;
}
.product_expertise .five_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/*align-items: end;*/
}
.product_expertise .five_boxes .col-sm-2{
	text-align: center;
}
.product_expertise .five_boxes .col-sm-2 .img_box{
	width: 120px;
    height: 120px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_expertise .five_boxes .col-sm-2 .sub_title{
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #000;
    padding: 20px 0 0;
}

/*accrediations*/
.accrediations{
	background: #f5f5f5;
	padding: 50px 0;
}
.accrediations .inner_container{
	/*display: flex;*/
	flex-wrap: wrap;
	align-items: center;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #dcd8db;
	padding: 25px 0;
}
.accrediations .inner_container .heading{
	padding: 0 20px 0 40px;
}
.accrediations .inner_container .img_boxes{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.accrediations .inner_container .img_boxes .width_20{
	width: 20%;
}
.accrediations .inner_container .img_box{
	width: 150px;
	margin: auto;
}

/*enquire_now*/
.enquire_now{
	background: #ccdcd0;
	padding: 50px 0;
}
.enquire_now .inner_container{
	display: flex;
	flex-wrap: wrap;
}
.enquire_now .inner_container .form_box{
	padding: 0 50px 0 0;
}
.enquire_now .inner_container .form_box form .input_box input[type="text"]{
	font-size: 15px;
    font-weight: 500;
    background: #ffffff;
    border: none;
    outline: none;
    border: 1px solid #ccdcd0;
    width: 100%;
    color: #000;
    padding: 5px 10px;
    margin: 0 0 10px 0;
    box-shadow: 0 0 10px 0px #afc7b5;
}
.enquire_now .inner_container .form_box form .input_box input[type="text"]::placeholder{
	color: #000;
	font-weight: 500;
}
.enquire_now .inner_container .form_box form .input_box textarea{
	font-size: 15px;
    font-weight: 500;
    background: #ffffff;
    border: none;
    outline: none;
    border: 1px solid #ccdcd0;
    width: 100%;
    color: #000;
    padding: 5px 10px;
    margin: 0 0 10px 0;
    box-shadow: 0 0 10px 0px #afc7b5;
    height: 62px;
}
.enquire_now .inner_container .form_box form .input_box textarea::placeholder{
	color: #000;
	font-weight: 500;
}
.enquire_now .inner_container .map_box{
	height: 100%;
}
.enquire_now .inner_container .form_box form .submit_box button{
	border: none;
	outline: none;
	font-size: 16px;
	background: #fff;
	/*border: 1px solid #1c3a30;*/
	padding: 5px 20px;
	color: #000;
	font-weight: 500;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0;
    box-shadow: 0 0 10px 0px #afc7b5;
}
.enquire_now .inner_container .form_box form .submit_box button span.arrow{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0 0 0 10px;
}
.enquire_now .inner_container .form_box form .submit_box button:hover span.arrow{
	animation: arrow_animation 1s infinite forwards;
}
.enquire_now .inner_container .form_box form .submit_box button span.arrow::before{
	content: '';
	position: absolute;
	right: 10%;
	top: calc(50% - 1px);
	background: #000;
	width: 80%;
	height: 2px;
    transition: all 0.3s;
}
.enquire_now .inner_container .form_box form .submit_box button span.arrow::after{
	content: '';
	position: absolute;
	right: 0;
	top: calc(50% - 6px);
	border-left: 10px solid #000;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transition: all 0.3s;
}

/*footer*/
footer{
	background: #16332b;
	padding:30px 0 20px 0;
}
footer .inner_container{
	display: flex;
	flex-wrap: wrap;
}
footer .foot_logo{
	width: 225px;
}
footer .menu_links{
	padding: 0 0 0 20px;
}
footer .menu_links ul li a{
	/*font-family: 'Noto Serif Display', serif;*/
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 15px 0;
}
footer .other_links ul li a{
	/*font-family: 'Noto Serif Display', serif;*/
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 15px 0;
}
footer .last_box{
	height: 100%;
	display: flex;
	flex-direction: column;
/*	justify-content: space-between;*/
}
footer .last_box .upper_ctc .address_box{
	font-size: 15px;
	line-height: 24px;
	color: #fff;
	font-weight: 500;
	padding: 0 0 15px 0;
}
footer .last_box .upper_ctc ul.ctc_info li a{
	display: flex;
	align-items: center;
	margin: 0 0 10px 0;
}
footer .last_box .upper_ctc ul.ctc_info li a span.icon i{
	font-size: 15px;
	color: #fff;
	margin: 0 5px 0 0;
}
footer .last_box .upper_ctc ul.ctc_info li a span.text{
	font-size: 15px;
	color: #fff;
	font-weight: 500;
}
footer .last_box .social_box{
	padding: 0 0 15px 0;
}
footer .last_box .social_box .text{
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 10px 0;
}
footer .last_box .social_box ul li{
	display: inline-block;
	margin: 0 10px 0 0;
}
footer .last_box .social_box ul li a{
	background: #fff;
	height: 30px;
	width: 30px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .last_box .social_box ul li a i{
	font-size: 18px;
	color: #231f20;
}

/*about_us_page*/
.about_us_page .info_box{
	padding:50px 0;
}
.about_us_page .info_box .heading{
	padding: 0 0 30px 10px;
}
.about_us_page .info_box .txt_img_box .left_text{
	padding: 0 10px 0 0;
}
.about_us_page .info_box .txt_img_box .left_text p{
	/*font-size: 15px;*/
	text-align: justify;
}
.about_us_page .info_box .txt_img_box .left_text a{
	color: #cd9500;
    font-weight: 600;
    text-decoration: underline;
}


/*contact_us_page*/
.contact_us_page .info_box{
	background: #ccdcd0;
	padding:50px 0;
}
.contact_us_page .info_box .heading{
	padding: 0 0 30px 0;
}
.contact_us_page .left_text .company_name{
	font-size: 16px;
	font-weight: 600;
	color: #000;
	padding: 0 0 20px 0;
}
.contact_us_page .left_text .company_address{
	font-size: 16px;
	font-weight: 600;
	color: #222;
	padding: 0 0 20px 0;
}
.contact_us_page .left_text .ctc_info ul li{
	font-size: 16px;
	font-weight: 600;
	color: #222;
	padding: 0 0 10px 0;
}
.contact_us_page .left_text .ctc_info ul li a{
	font-size: 16px;
	font-weight: 600;
	color: #222;
	padding: 0 0 10px 0;
}
.contact_us_page .inner_container .form_box form .input_box input[type="text"]{
	font-size: 15px;
    font-weight: 500;
    background: #ffffff;
    border: none;
    outline: none;
    border: 1px solid #ccdcd0;
    width: 100%;
    color: #000;
    padding: 5px 10px;
    margin: 0 0 10px 0;
    box-shadow: 0 0 10px 0px #afc7b5;
}
.contact_us_page .inner_container .form_box form .input_box input[type="text"]::placeholder{
	color: #000;
	font-weight: 500;
}
.contact_us_page .inner_container .form_box form .input_box textarea{
	font-size: 15px;
    font-weight: 500;
    background: #ffffff;
    border: none;
    outline: none;
    border: 1px solid #ccdcd0;
    width: 100%;
    color: #000;
    padding: 5px 10px;
    margin: 0 0 10px 0;
    box-shadow: 0 0 10px 0px #afc7b5;
    height: 62px;
}
.contact_us_page .inner_container .form_box form .input_box textarea::placeholder{
	color: #000;
	font-weight: 500;
}
.contact_us_page .inner_container .form_box form .submit_box button{
	border: none;
	outline: none;
	font-size: 16px;
	background: #556b64;
	/*border: 1px solid #1c3a30;*/
	padding: 5px 20px;
	color: #fff;
	font-weight: 500;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0;
    box-shadow: 0 0 10px 0px #afc7b5;
}
.contact_us_page .inner_container .form_box form .submit_box button span.arrow{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0 0 0 10px;
}
.contact_us_page .inner_container .form_box form .submit_box button:hover span.arrow{
	animation: arrow_animation 1s infinite forwards;
}
.contact_us_page .inner_container .form_box form .submit_box button span.arrow::before{
	content: '';
	position: absolute;
	right: 10%;
	top: calc(50% - 1px);
	background: #fff;
	width: 80%;
	height: 2px;
    transition: all 0.3s;
}
.contact_us_page .inner_container .form_box form .submit_box button span.arrow::after{
	content: '';
	position: absolute;
	right: 0;
	top: calc(50% - 6px);
	border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transition: all 0.3s;
}
.contact_us_page .inner_container .diff_forms_tabs ul{
	height: 50px;
	display: flex;
	justify-content: space-between;
	margin: 0 0 25px 0;
}
.contact_us_page .inner_container .diff_forms_tabs ul li{
	display: inline-block;
}
.contact_us_page .inner_container .diff_forms_tabs ul li a{
	font-size: 22px;
	line-height: 35px;
	font-weight: 600;
	color: #1c3a30;
	padding: 5px 25px;
	border-radius: 10px;
	background: #ccdcd0;
	border: 1px solid #16332b;
	transition: all 0.3s;
}
.contact_us_page .inner_container .diff_forms_tabs ul li a:hover{
    color: #fff;
	background: #556b64;
}
.contact_us_page .inner_container .diff_forms_tabs ul li.active a{
	background: #16332b;
	color: #fff;
}
.contact_us_page .inner_container .diff_forms_tabs ul li.active a:hover{
	/*background: #000;
	color: #fff;*/
}
.contact_us_page .inner_container .diff_forms_tabs .text{
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	padding: 0 0 20px 0;
	color: #000;
}

/*products_page*/
.products_page{
	background: #eeebed;
}
.products_page .info_box{
	padding: 50px 0 0;
}
.products_page .five_boxes{
	text-align: center;
	padding: 0 0 50px 0;
}
.products_page .five_boxes .upper_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.products_page .five_boxes .lower_boxes{
	display: flex;
	justify-content: space-evenly;
}
.products_page .five_boxes .col-sm-3{
	margin: 0 0 25px 0;
}
.products_page .five_boxes .box{
	height: 100%;
	position: relative;
	padding: 50px 0;
}
.products_page .five_boxes .box::before{
	position: absolute;
	left: 25%;
	bottom: 0;
	content: '';
	background: #ffc10e;
	height: 2px;
	width: 50%;
}
.products_page .five_boxes .box .icon_box{
	width: 150px;
	height: 150px;
	margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.products_page .five_boxes .box .title{
	font-family: 'Open Sans', sans-serif;
	color: #000;
	font-weight: 700;
}
.products_page .five_boxes .box .text{
	font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    color: #000;
    padding: 0 0 15px 0;
}

.products_page .seven_boxes .inner_container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	/*padding: 0 0 50px 0;*/
}
.products_page .seven_boxes .inner_container .box{
	width: 25%;
	position: relative;
}
.products_page .seven_boxes .inner_container .box .img_box{
	padding: 0 0 150% 0;
    position: relative;
}
.products_page .seven_boxes .inner_container .box .img_box img{
	position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products_page .seven_boxes .inner_container .box .overlay_text{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: transparent;
	padding: 70px 25px;
	transition: all 0.3s;
}
.products_page .seven_boxes .inner_container .box.box1:hover .overlay_text{
	background: #dff0ea;
}
.products_page .seven_boxes .inner_container .box.box2:hover .overlay_text{
	background: #eef5e3;
}
.products_page .seven_boxes .inner_container .box.box3:hover .overlay_text{
	background: #c6d6e7;
}
.products_page .seven_boxes .inner_container .box.box4:hover .overlay_text{
	background: #edece3;
}
.products_page .seven_boxes .inner_container .box.box5:hover .overlay_text{
	background: #fbf5e5;
}
.products_page .seven_boxes .inner_container .box.box6:hover .overlay_text{
	background: #f0fff3;
}
.products_page .seven_boxes .inner_container .box.box7:hover .overlay_text{
	background: #fceed4;
}
.products_page .seven_boxes .inner_container .box.box8:hover .overlay_text{
	background: #eef5e3;
}
.products_page .seven_boxes .inner_container .box .overlay_text .title{
	font-family: 'Open Sans', sans-serif;
	color: #fff;
	font-weight: 700;
    transition: color 0.3s;
    text-shadow: 0 0 20px #606060;
}
.products_page .seven_boxes .inner_container .box:hover .overlay_text .title{
	color: #000;
	text-shadow: 0 0 black;
}
.products_page .seven_boxes .inner_container .box .overlay_text .text{
	font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    color: #000;
    padding: 0 0 15px 0;
    opacity: 0;
    transition: all 0.3s;
}
.products_page .seven_boxes .inner_container .box:hover .overlay_text .text{
	opacity: 1;
}

.products_page .products_list{
	background: #fff3d0;
	padding: 50px 0;
}
.products_page .products_list .title{
	font-family: 'Open Sans', sans-serif;
	color: #000;
	font-weight: 700;
	text-align: center;
	padding: 0 0 30px;
}
.products_page .products_list .list_wrapper{
	display: flex;
	flex-wrap: wrap;
}
.products_page .products_list .list_wrapper .width_20{
	width: 20%;
}
.products_page .products_list .list_wrapper .width_20:nth-child(3){
	padding: 0 40px 0 0;
}
.products_page .products_list .list_wrapper .width_20:nth-child(4){
	padding: 0 40px 0 0;
}
.products_page .products_list .list_wrapper .width_20:nth-child(5){
	padding: 0 40px 0 0;
}
.products_page .products_list .list_wrapper .width_20 ul li{
	font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: #444;
    padding: 0 0 15px 0;
}
.products_page .products_list .list_wrapper .width_20 .sub_title{
	font-size: 20px;
    height: 37px;
    line-height: 37px;
    font-weight: 700;
    color: #000;
    margin: 15px 0 10px 0;
    border-bottom: 2px solid #ffce44;
    box-shadow: 1px 12px 30px -18px;
}
.products_page .products_list .list_wrapper .width_20 .sub_title span{
	/*border-bottom: 2px solid #cb9e1f;*/
	/*padding: 0 0 2px 0;*/
}

/*research_centre_page*/
.research_centre_page .info_box{
	padding: 50px 0;
}
.research_centre_page .img_txt_boxes .img_txt_box{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.research_centre_page .img_txt_boxes .img_txt_box:nth-child(1){
	background: #dff0ea;
}
.research_centre_page .img_txt_boxes .img_txt_box:nth-child(2){
	background: #edece3;
}
.research_centre_page .img_txt_boxes .img_txt_box:nth-child(3){
	background: #eef5e3;
}
.research_centre_page .img_txt_boxes .img_txt_box .width_50{
	width: 50%;
}
.research_centre_page .img_txt_boxes .img_txt_box .width_50 .txt_box{
	width: 585px;
}
.research_centre_page .img_txt_boxes .img_txt_box.left_img_box .width_50 .txt_box{
	margin: 0 auto 0 0;
	padding: 0 0 35px 50px;
}
.research_centre_page .img_txt_boxes .img_txt_box.right_img_box .width_50 .txt_box{
	margin: 0 0 0 auto;
	padding: 0 50px 35px 0;
}

/*process_solutions*/
.process_solutions{
	padding: 50px 0;
}
.process_solutions .six_boxes{
	display: flex;
	flex-wrap: wrap;
}
.process_solutions .heading{
	padding: 0 0 40px 0;
}
.process_solutions .six_boxes .process_box{
	text-align: center;
	padding: 0 0 50px 0;
}
.process_solutions .six_boxes .process_box .img_box{
	width: 150px;
	margin: auto;
}
.process_solutions .six_boxes .process_box .sub_title{
	font-size: 28px;
	line-height: 30px;
	font-weight: 700;
	color: #000;
	padding: 10px 0;
}
.process_solutions .six_boxes .process_box .txt{
	font-size: 15px;
	font-weight: 500;
	color: #000;
}

/*roots_virtual*/
.roots_virtual{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.roots_virtual .width_50{
	width: 50%;
}
.roots_virtual .width_50 .text_box{
	width: 585px;
	margin: 0 0 0 auto;
	padding: 0 50px 0 0;
}

/*toll_manufacturing_page*/
.toll_manufacturing_page .info_box{
	padding: 50px 0;
}
.toll_manufacturing_page .info_box .text_box ul li{
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    padding: 0 0 15px 0;
    list-style: disc;
    margin: 0 0 0 20px;
}
.toll_manufacturing_page .yellow_band{
	background: #fff3d0;
	padding: 50px 0;
}
.toll_manufacturing_page .yellow_band .inner_container{
	display: flex;
}
.toll_manufacturing_page .yellow_band .text_box{
	flex: 1 1 auto;
	text-align: center;
	padding: 15px 0;
}
.toll_manufacturing_page .yellow_band .text_box:nth-child(2){
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}
.toll_manufacturing_page .yellow_band .text_box .big_text{
	font-size: 70px;
	line-height: 70px;
	font-weight: 700;
	color: #000;
}
.toll_manufacturing_page .yellow_band .text_box .lil_big{
	font-size: 35px;
	font-weight: 700;
	color: #000;
	vertical-align: text-bottom;
}
.toll_manufacturing_page .yellow_band .text_box .small_txt{
	font-size: 35px;
	line-height: 35px;
	font-weight: 400;
	color: #000;
}
.toll_manufacturing_page .text_info_box{
	padding: 0 0 50px 0;
}
.toll_manufacturing_page .text_info_box ul li{
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    padding: 0 0 15px 0;
    list-style: disc;
    list-style-position: inside;
}
.toll_manufacturing_page .text_info_box .icon_boxes{
	display: flex;
	flex-wrap: wrap;
}
.toll_manufacturing_page .text_info_box .icon_boxes .icon_box{
	margin: 50px 0 0 0;
}
.toll_manufacturing_page .text_info_box .icon_boxes .icon_box .icon{
	width: 100px;
	margin: auto;
}
.toll_manufacturing_page .text_info_box .icon_boxes .icon_box .text{
	font-size: 22px;
	line-height: 28px;
	font-weight: 700;
	color: #000;
	text-align: center;
	padding: 15px 15px 0;
}

.superior_quality .icon_boxes{
	background: linear-gradient(180deg, #fff 75px, #fff3d0 75px);
	margin: 20px 0 0 0;
	padding: 0 0 50px 0;
}
.superior_quality .icon_boxes ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
.superior_quality .icon_boxes ul li{
	display: inline-block;
	list-style: none;
	margin: 0 30px;
}
.superior_quality .icon_boxes ul li .img_box{
	width: 150px;
	margin: auto;
}
.superior_quality .icon_boxes ul li .img_box img{
	border-radius: 50%;
}
.superior_quality .icon_boxes ul li .text{
	font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: #000;
    text-align: center;
    padding: 15px 15px 0;
}

/*terms_page*/
.terms_page{
	padding: calc(73.52px + 2%) 0 0;
	min-height: calc(100vh - 206px);
}
.terms_page .inner_container{
	padding: 50px 0;
}
.terms_page .inner_container h3{
	font-size: 18px;
	padding: 10px 0 15px 0;
}
/*privacy_page*/
.privacy_page{
	padding: calc(73.52px + 2%) 0 0;
	min-height: calc(100vh - 206px);
}
.privacy_page .inner_container{
	padding: 25px 0 50px 0;
}
.privacy_page .inner_container .heading{
	padding: 0 0 25px 0;
}
.privacy_page .inner_container h3{
	font-size: 25px;
	line-height: 30px;
	padding: 20px 0 15px 0;
	/*font-weight: 600;*/
    color: #16332b;
    /*font-family: 'Noto Serif Display', serif;*/
}
.privacy_page .inner_container .text_box ul li{
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    padding: 0 0 15px 0;
    list-style: disc;
    margin: 0 0 0 20px;
}


/*blog_main_page*/
.blog_main_page{
	padding: calc(73.52px + 2%) 0 50px 0;
	min-height: calc(100vh - 206px);
	
}
.blog_main_page .heading{
	text-align: center;
	padding: 0 0 25px 0;
}
.blog_main_page .blog_boxes a.box {
    display: inline-block;
    margin: 0 0 20px 0;
    padding: 20px;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #212a27;
    text-align: center;
}
.blog_main_page .blog_boxes a.box .image_box img {
    border-radius: 10px;
}
.blog_main_page .blog_boxes a.box .title {
    margin: 20px 0 10px 0;
    height: 45px;
    font-size: 20px;
    color: #006035;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}
.blog_main_page .blog_boxes a.box .text {
    text-align: center;
    padding: 0 0 15px 0;
    font-size: 14px;
    height: 110px;
}
.blog_main_page .blog_boxes a.box .posted_on {
    font-size: 14px;
    text-align: center;
}

/*blog_page*/
.blog_page{
	padding: calc(73.52px + 2%) 0 0 0;
	min-height: calc(100vh - 206px);
}
.blog_page .blog_section{
	padding: 50px 0;
}
.blog_page .blog_section .post_details{
	padding: 0 35px 0 0;
}
.other_posts {
    border: 1px solid #f1f1f1;
    padding: 0;
}
.other_posts .title {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    padding: 15px 15px;
    background: #16332b;
    color: #fff;
    font-weight: 600;
    margin: 0;
}
.other_posts .list {
    padding: 0;
}
.other_posts .list ul li {
    border-bottom: 1px solid #f1f1f1;
    padding: 15px;
}
.other_posts .list a {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: block;
}

[type=submit][disabled]{
	position: relative;
}
[type=submit][disabled]::before{
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
	color: #fff;
	z-index: 10;
}
[type=submit][disabled]::after{
	position: absolute;
    content: '';
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    z-index: 11;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*Thank You Page*/
.thankyou_page{
	padding: calc(73.52px + 2%) 0 0;
    min-height: calc(100vh - 206px);
}
.thankyou_page .inner_container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 15% 0;
}
.thankyou_page .inner_container .line1{
	display: inline-block;
    position: relative;
    color: #16332b;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 0 0 20px 0;
}
.thankyou_page .inner_container .line2{
	font-size: 16px;
	font-weight: 600;
}

.form_error{
	color: #ff0000;
    font-size: 13px;
    padding: 0 0 5px 0;
}

.crafted_class {
    font-size: 14px;
    padding: 20px 0 0;
}
.crafted_class a {
    color: #fff;
}
.crafted_class img{
	width: 30px;
    padding: 0 0 0 5px;
}
