@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,900,300italic");

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

/* Basic */

	html {
		box-sizing: border-box;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	body {
		background: #2b2a29;
	}

		body.is-preload *, body.is-preload *:before, body.is-preload *:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
		}

	body, input, textarea, select {
		font-family: 'Source Sans Pro';
		font-weight: 300;
		color: #000000;
		font-size: 16px;
		line-height: 1.75em;
	}

	strong, b {
		color: #2b2a29;
		font-weight: 400;
	}

	i, em {
		font-style: italic;
	}

	sub {
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}

	sup {
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}

	blockquote {
		border-left: solid 0.75em #dddddd;
		padding: 1em 0 1em 1.5em;
		font-style: italic;
	}

	h1, h2, h3, h4, h5, h6 {
		color: #2b2a29;
		font-weight: 700;
	}

	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
		color: inherit;
		text-decoration: none;
	}

	h2 {
		font-size: 1.5em;
	}

	h3 {
		font-size: 1.35em;
	}

	a {
		color: #0a6a3a;
		text-decoration: underline;
	}

		a:hover {
			text-decoration: none;
		}

	br.clear {
		clear: both;
	}

	hr {
		border: 0;
		border-top: solid 1px #dddddd;
		height: 1px;
		margin: 2em 0 2em 0;
	}

	p, ul, ol, dl, table {
		margin-bottom: 1em;
	}

/* Main CSS */
.main-container{
	width: 100%;
	background: #ffffff;
}
.header_wrapper{
	width: 100%;
	max-width: 1170px;
	padding: 20px 15px 0;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.logo_wrapper{
	width: 20%;
}
.logo_wrapper img{
	width: 150px;
}
.nav_wrapper{
	width: 80%;
}
.nav_wrapper ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.nav_wrapper ul li{
	padding: 0 10px;
	font-style: italic;
	list-style: none;
	position: relative;
}
.nav_wrapper ul li .dropdown-content{
	font-style: normal;
	display: none;
  	position: absolute;
	z-index: 101;
	background: #ffffff;
	padding: 15px 15px;
	width: 220px;
	box-sizing: border-box;
	border-radius: 0 8px 8px 8px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.nav_wrapper ul li .dropdown-content li{
	padding: 5px 10px;
	border-bottom: 1px solid #eeeeee;
}
.dropdown:hover .dropdown-content {display: block;}
.nav_wrapper ul li a{
	border-radius: 5px;
    color: #5d5d5d;
    text-decoration: none;
    padding: 0.6em 1.2em 0.6em 1.2em;
    -moz-transition: background-color .25s ease-in-out;
    -webkit-transition: background-color .25s ease-in-out;
    -ms-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
    outline: 0;
}
.nav_wrapper ul li .dropdown-content li a{
	background: none;
	padding: 0;
	color: #5d5d5d;
	border-radius: 0;
}
.nav_wrapper ul li:hover .dropdown-content li a{
	color: #5d5d5d !important;
	font-weight: normal;
}
.nav_wrapper ul li.active a, .nav_wrapper ul li:hover a{
	background: #46a134;
    color: #fff !important;
    font-weight: 700;
}
.hemburger{
	display: none;
	width: 32px;
	height: 32px;
}
.mob_nav{
	display: none;
	flex-direction: column;
	align-items: flex-end;
	position: absolute;
	top: 84px;
	right: 0;
	width: 100%;
	height: calc(100vh - 84px);
	overflow-y: auto;
	background: #2b2a29;
	z-index: 100;
	padding: 20px;
	box-sizing: border-box;
}
.mob_nav ul{
	width: 100%;
}
.mob_nav ul li{
	margin: 0 0 5px;
}
.mob_nav ul li a{
	text-decoration: none;
	color: #ffffff;
}
.mob_nav ul li ul{
	padding: 0 0 0 30px;
}
.mob_nav ul li ul li a{
	font-style: italic;
}
.banner{
	width: 100%;
	background: rgb(252,251,164);
	background: radial-gradient(circle, rgba(252,251,164,1) 0%, rgba(215,225,72,1) 25%, rgba(140,172,23,1) 50%, rgba(109,133,74,1) 75%, rgba(38,67,0,1) 100%);
}
.banner_wrapper{
	margin: 0 auto;
	width: 100%;
	max-width: 1170px;
}
.banner_img_wrapper{
	width: 100%;
}
.banner_img_wrapper img{
	width: 100%;
}
.about_us{
	width: 100%;
	max-width: 1170px;
	padding: 100px 15px 100px;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}
.about_us_box{
	width: 45%;
	padding: 0 2%;
	text-align: center;
}
.about_us_box h2{
	margin: 0 0 15px;
}
.about_us_box p{
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 400;
}
.our_products{
	width: 100%;
	padding: 100px 15px 50px;
	margin: 0 auto;
	box-sizing: border-box;
	background: #f7f7f7;
	border-top: 1px solid #ccc;
}
.title{
	font-size: 2em;
	font-weight: 600;
	text-align: center;
	color: #2b2a29;
}
.sub_title{
	width: 100%;
	max-width: 1170px;
	padding: 0 15px;
	box-sizing: border-box;
	margin: 15px auto 0;
	font-weight: 400;
	text-align: center;
}
.product_wrapper{
	width: 100%;
	max-width: 1170px;
	padding: 60px 0 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.product_box{
	width: 30%;
	background: #ffffff;
    border-bottom: solid 1px #ebebeb;
	padding: 25px 25px 10px;
	margin: 0 0 50px;
	position: relative;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	cursor: pointer;
}
.product_box.values{
	width: 22%;
}
.product_img{
	width: 100%;
	height: 150px;
	display: flex;
	justify-content: center;
}
.product_img img{
	height: 100%;
}
.product_box h3{
	margin: 16px 0 10px;
}
.product_box.values h3{
	margin: 0;
}
.heading_bar{
	height: 2px;
	width: 50%;
	background-color: #f17f13;
	margin: 0 0 10px;
}
.product_categories{
	width: 100%;
	padding: 100px 15px 75px;
	box-sizing: border-box;
	background: #f7f7f7;
	border-top: 1px solid #ccc;
}
.pc_wrapper{
	width: 100%;
	max-width: 1170px;
	padding: 60px 0 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}
.pc_box{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: #ffffff;
	border-radius: 8px;
	margin: 0 0 25px;
	overflow: hidden;
}
.pc_img_wrapper{
	width: 300px;
	margin: 0 50px 0 0;
	flex-shrink: 0;
}
.pc_img_wrapper img{
	width: 100%;
	display: block;
}
.pc_content{
	padding: 25px 25px 25px 0;
}
.pc_content h2{
	margin: 0 0 20px;
}
.pc_more{
	text-align: right;
}
.pc_more a{
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.business_channels{
	width: 100%;
	padding: 100px 15px;
	box-sizing: border-box;
	background: #f7f7f7;
	border-top: 1px solid #ccc;
}
.bus_c_wrapper{
	width: 100%;
	max-width: 710px;
	padding: 60px 0 0;
	margin: 0 auto;
}
.bus_c_wrapper ul li{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 25px;
}
.bus_c_wrapper ul li svg{
	margin: 0 20px 0 0;
}
.bus_c_wrapper ul li p{
	display: flex;
	flex-direction: column;
	margin: 0;
}
.bus_c_wrapper ul li p strong{
	font-weight: 600;
}

.infrastructure{
	width: 100%;
	padding: 100px 15px;
	box-sizing: border-box;
}
.infa_wrapper{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.infa_wrapper .svg_wrapper{
	margin: 0 0 15px;
	text-align: center;
}
.infa_wrapper h2{
	margin: 0 0 20px;
}

.vision_mission{
	width: 100%;
	padding: 100px 0;
}
.vision_mission .about_us{
	padding: 60px 15px 0;
}

.our_history{
	width: 100%;
	max-width: 1170px;
	padding: 100px 15px;
	box-sizing: border-box;
	margin: 0 auto;
}
.milestones{
	margin: 60px 0 0;
}
ul.dates {
	list-style: none;
	padding-left: 0;
}
ul.dates li {
	display: flex;
	align-items: center;
	height: 80px;
	position: relative;
	padding: 0 0 0 140px;
	margin: 0 0 15px;
}
ul.dates .date {
	display: block;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	left: 0;
	top: 0;
	background-color: #f17f13;
	width: 100px;
	height: 80px;
	color: #fff;
	line-height: 1em;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
ul.dates .date:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: -1.2em;
	border-left: solid 1.25em #f17f13;
	border-top: solid 40px transparent;
	border-bottom: solid 40px transparent;
}
ul.dates .date strong {
	display: block;
	font-size: 1.75em;
	padding-top: 0.15em;
	color: #000000;
}
ul.dates h3 {
	font-size: 1.1em;
}
ul.dates p {
	margin: 0;
}
.footer{
	width: 100%;
	padding: 60px 15px;
	box-sizing: border-box;
	background: #2b2a29;
	color: #ffffff;
}
.footer_wrapper{
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
}
.footer_wrapper h2{
	font-size: 1.5em;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 15px;
	white-space: nowrap;
}
.footer_wrapper ul{
	padding: 0;
	margin: 0;
}
.footer_wrapper ul li{
	list-style: none;
}
.footer_wrapper ul li a, .footer_wrapper p a{
	color: #ffffff;
}
.footer_wrapper ul li strong{
	color: #ffffff;
	font-weight: 600;
}
.footer_top{
	margin: 0 0 50px;
	font-size: 18px;
    font-weight: 400;
}
.footer_bottom{
	display: flex;
	justify-content: space-between;
}
.footer_wrapper .fb_content{
	margin: 0 80px 0 0;
	flex-grow: 0;
}
.footer_wrapper .fb_content:last-child{
	margin: 0;
}
.footer_wrapper .social{
	display: flex;
}
.footer_wrapper .social li{
	margin: 0 15px;
}
.footer_wrapper .social li:first-child{
	margin-left: 0;
}


@media only screen and (max-width: 1023px) {
	.header_wrapper{
		padding: 15px 15px 0;
	}
	.logo_wrapper img{
		width: 80px;
	}
	.nav_wrapper{
		display: none;
	}
	.about_us, .our_products, .vision_mission, .our_history{
		padding: 60px 15px;
		flex-wrap: wrap;
	}
	.about_us_box{
		width: 100%;
		padding: 0;
	}
	.about_us .about_us_box:first-child{
		margin: 0 0 40px;
	}
	.product_categories{
		padding: 60px 15px 35px;
	}
	.pc_wrapper{
		padding: 30px 0 0;
	}
	.pc_box{
		flex-direction: column;
	}
	.pc_img_wrapper{
		width: 100%;
		margin: 0;
	}
	.pc_content{
		padding: 25px;
	}
	.product_wrapper{
		padding: 30px 0 0;
	}
	.product_box{
		width: 100%;
		padding: 15px 15px 10px;
		margin: 0 0 20px;
	}
	.product_box h3, .product_box p{
		text-align: center;
	}
	.product_box.values{
		width: 100%;
	}
	.product_box.values h3, .product_box.values p{
		text-align: left;
	}
	.vision_mission .about_us{
		padding: 30px 15px 0;
	}
	.milestones{
		margin: 30px 0 0;
	}
	.business_channels{
		padding: 60px 15px;
	}
	.bus_c_wrapper{
		padding: 30px 0 0;
	}
	.bus_c_wrapper ul li svg{
		flex-shrink: 0;
	}
	ul.dates li{
		height: auto;
		min-height: 80px;
		margin: 0 0 20px;
	}
	ul.dates p{
		line-height: 1.2em;
	}
	.bus_c_wrapper ul li{
		align-items: flex-start;
	}
	.infrastructure{
		padding: 60px 15px;
	}
	.infa_wrapper{
		flex-direction: column;
		align-items: center;
	}
	.infa_wrapper .first{
		margin: 0 0 50px;
	}
	.footer_bottom{
		flex-direction: column;
		text-align: center;
	}
	.footer_wrapper .fb_content{
		margin: 0 0 30px;
	}
	.footer_wrapper .social{
		justify-content: center;
	}
	.hemburger{
		display: block;
	}

}
/* .....//Main CSS */

/* Lightbox CSS */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}
.lightbox-content {
    position: relative;
	top: 50%;
    margin: 0 auto;
    padding: 25px;
    width: 80%;
    max-width: 700px;
    background: white;
    text-align: center;
	transform: translateY(-50%);
	border-radius: 8px;;
}
.lightbox-content .product_img{
	height: 300px;
}
.lightbox-content h3{
	margin: 16px 0 10px;
}
.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* .....//Lightbox CSS */

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./slick.eot');
    src: url('./slick.eot?#iefix') format('embedded-opentype'), url('./slick.woff') format('woff'), url('./slick.ttf') format('truetype'), url('./slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 32px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -40px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -40px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

