* {
	margin : 0;
	padding: 0;
	transition: all .5s;
	box-sizing: border-box;
}

body {
	position: relative;
	width: 100%;
}

.navbar-default {
	background-color: transparent !important;
	border: none !important;
	z-index: 98;
	transition: all .5s ease;
	min-width: 1100px;
}
nav.transparent {
	background: #FAFAFA/*#E0ECF8*/ !important;
	box-shadow: 1px 4px 4px rgba(0, 0, 0, .075);
}
.transparent .navbar-nav > li > a {
	color: black !important;
}
.navbar-header .navbar-brand {
	position: absolute;
	top: -12px;
	left: 80px;
}
.navbar-header .navbar-brand > img {
	width: 15%;
}

.navbar .container-fluid .navbar-nav {
	margin-right: 55px;
}

.navbar .container-fluid .navbar-nav > li > a {
	position: relative;
	padding: 25px;
	color: white;
	font-size: 20px;
	transition: all 0s;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: background-color .5s ease;
}
.navbar .container-fluid .navbar-nav > li > a:hover,
.navbar .container-fluid .navbar-nav > li > a:focus {
	background-color: rgba(0, 0, 0, .025);
}
.navbar .container-fluid .navbar-nav > li > a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background-color: #009931;
	transition: width .5s ease;
}
.navbar .container-fluid .navbar-nav > li > a:hover:before {
	width: 100%;
}

.mobile-nav {
	display: none;
	visibility: hidden;
}

.mji-home {
	position: relative;
	width: 100%;
	height: 100vh;
	background: white url('../images/bg-home-mji.jpg') no-repeat center top;
	background-size: cover;
}

/* ==============  ==============*/
.mji-homeintro {
	position: relative;
	background-color: #EAEAEA;
	width: 100%;
	padding: 25px 0;
	font-size: 16px;
	letter-spacing: 1px;
}
.mji-homeintro ol {
	margin-left: 15px;
}

.outer {
    display: table;
    position: relative;
    height: 100vh;
    width: 100%;

}

.middle {
    display: table-cell;
    vertical-align: middle;
    text-align: left; /* center */
}

.inner {
    margin-left: auto;
    margin-right: auto; 
    padding: 0 50% 0 50px; /* 0 50px */
    width: 100%; /*whatever width you want*/
    font-size: 38px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.mji-home .slogan {
	color: rgba(255,255,255,1);
	background-color: rgba(8,142,55,.65);
}

/* ==============  ==============*/
.mji-about {
	position: relative;
	width: 100%;
	height: auto;
	padding: 125px 0 75px 0;
	background: #FFF url('../images/about_bg.png') no-repeat center bottom;
	background-size: contain;
}

.mji-about p {
	letter-spacing: 1px;
	font-size: 16px;
}

.mji-about img {
	width: 100%;
}

/* ==============  ==============*/
.mji-products {
	position: relative;
	width: 100%;
	height: auto;
	padding: 125px 0 75px 0;
	background-color: #EAEAEA;
}

.mji-products #myCarousel {
	list-style: none;
}

.procuct-list {
	position: relative;
	margin: 25px 0;
	list-style-type: none;
}

.procuct-list li a {
	position: relative;
	margin: 0 40px 0 0;
	padding: 5px;
	color: rgba(0, 0, 0, .75);
	font-size: 19px;
	font-weight: 600;
	cursor: pointer;
}
.procuct-list li a:hover {
	text-decoration: none;
}
.procuct-list li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background-color: #009832;
	transition: all .5s ease;
}
.procuct-list li a:hover:after {
	width: 100%;
}

#myCarousel img {
	width: 60%;
}

.mji-products p {
	padding-top: 15px;
	font-size: 16px;
	letter-spacing: 1px;
}

/* ==============  ==============*/
.mji-contact {
	background: #FFF url('../images/footer_bg.png') no-repeat center bottom;
	background-size: contain;
	height: auto;
	padding: 125px 0 200px 0;
}

.mji-contact .title-page {
	margin-bottom: 50px;
}

.contact-intro > p:nth-child(1) {
	color: #009832;
	font-weight: 600;
}
.contact-intro > p:nth-child(2),
.contact-intro > p:nth-child(3),
.contact-intro > p:nth-child(4) {
	padding-left: 10px;
	color: gray;
}
.contact-intro > p {
	font-size: 1vw;
}

.mji-contact input[type="text"],
.mji-contact input[type="email"],
.mji-contact  textarea {
	box-shadow: none;
	border: 2px solid darkgray;
	font-size: 16px;
	color: gray;
}

.mji-contact .action {
	text-align: center;
}

label.submit-label {
	width: 50%;
	font-size: 16px;
	color: white;
	text-align: center;
}

.container-navbar-footer {
	margin: 25px 0;
	width: 100%;
	display: block;
}

ul.navbar-footer {
	text-align: center;
	list-style: none;
}

ul.navbar-footer > li > a {
	padding: 25px;
	font-size: 17px;
	font-weight: 600;
	color: gray;
	text-transform: uppercase;
}

ul.navbar-footer > li > a:hover,
ul.navbar-footer > li > a:focus {
	text-decoration: none;
}

	@media screen and (max-width: 480px) {

		.navbar-default {
			display: none;
			visibility: hidden;
		}
		.mobile-nav {
			display: block;
			visibility: visible;
			position: fixed;
			top: 0;
			left: 0;			
			background-color: rgba(255,255,255,.95);
			z-index: 98;			
		}
		.mobile-nav > .full-width-nav {
			width: 100%;
		}
		.mobile-nav > .full-width-nav img {
			width: 18%;
		}
		.mobile-nav > .full-width-nav > ul.right-nav {
			display: inline-block;
			float: right;
		}
		.mobile-nav ul.right-nav > li {
			list-style: none;
			display: inline;
			float: left;
			padding-top: 17px;
		}
		.mobile-nav ul.right-nav > li > a {
			font-size: 15px;
			color: black;
			padding: 0 5px;
			text-transform: uppercase;
		}
			.mobile-nav ul.right-nav > li > a:hover {
				text-decoration: none;
			}

		.inner {
			padding: 0 50px;
			font-size: 30px;
			text-align: left;
		}

		.mji-about {
			padding: 25px 0;
		}
		.mji-about p {
			font-size: 14px;
		}

		.mji-products {
			padding: 0;
		}
		.procuct-list li{
			margin-top: 20px;
		}
		.procuct-list li a {
			font-size: 15px;
		}
		#myCarousel img {
			width: 100%;
		}
		.mji-products p {
			padding-top: 10px;
			font-size: 14px;
		}

		.mji-contact {
			padding: 10px 0;
		}

		.mji-contact .title-page {
			margin-bottom: 25px;
		}

		.contact-intro > p {
			font-size: 14px;
		}

		.mji-contact input[type="text"],
		.mji-contact input[type="email"],
		.mji-contact  textarea {
			font-size: 14px;
		}

		.container-navbar-footer {
			display: none;
			visibility: hidden;
		}

	}

	@media screen and (max-width: 350px) {

		.navbar-default {
			display: none;
			visibility: hidden;
		}
		.mobile-nav > .full-width-nav img {
			width: 17%;
		}
		.mobile-nav ul.right-nav > li {
			padding-top: 12px;
		}
		.mobile-nav ul.right-nav > li > a {
			font-size: 13px;
			padding: 0 5px;
		}
			.mobile-nav ul.right-nav > li > a:hover {
				text-decoration: none;
			}